We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f77e0e commit b1b2aa9Copy full SHA for b1b2aa9
.github/workflows/schedule.yml
@@ -17,16 +17,16 @@ jobs:
17
with:
18
fetch-depth: "0"
19
20
- - name: Increment and tag with CalVer
21
- id: tagit
22
- uses: mani-sh-reddy/calver-increment@v1.2.0
23
- env:
24
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: CalVer
+ id: calver
+ uses: energostack/calver-action@v1
+ with:
+ prerelease: ${{ github.event_name == 'workflow_dispatch' }}
25
26
- name: Create Release
27
uses: ncipollo/release-action@v1
28
29
- tag: ${{ steps.tagit.outputs.new_tag }}
+ tag: ${{ steps.calver.outputs.next_version }}
30
31
- name: Get Version
32
run: |
0 commit comments