We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f0b206 commit 9807983Copy full SHA for 9807983
.github/workflows/tag-build.yml
@@ -14,13 +14,13 @@ jobs:
14
- uses: actions/checkout@v2
15
- name: Get tag name from date
16
id: tag_name
17
- run: echo "::set-output name=date::$(date +'%y.%d')"
+ run: echo "date=$(date +'%Y.%d')" >> $GITHUB_OUTPUT
18
- name: Bump version and push tag
19
id: tag_version
20
uses: mathieudutour/[email protected]
21
with:
22
github_token: ${{ secrets.GITHUB_TOKEN }}
23
- custom_tag: v${{ steps.tag_name.outputs.date }}
+ custom_tag: ${{ steps.tag_name.outputs.date }}
24
- name: Create a GitHub release
25
uses: ncipollo/release-action@v1
26
0 commit comments