Skip to content

Commit 9807983

Browse files
committed
Resolve deprecation warning
1 parent 5f0b206 commit 9807983

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tag-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- name: Get tag name from date
1616
id: tag_name
17-
run: echo "::set-output name=date::$(date +'%y.%d')"
17+
run: echo "date=$(date +'%Y.%d')" >> $GITHUB_OUTPUT
1818
- name: Bump version and push tag
1919
id: tag_version
2020
uses: mathieudutour/[email protected]
2121
with:
2222
github_token: ${{ secrets.GITHUB_TOKEN }}
23-
custom_tag: v${{ steps.tag_name.outputs.date }}
23+
custom_tag: ${{ steps.tag_name.outputs.date }}
2424
- name: Create a GitHub release
2525
uses: ncipollo/release-action@v1
2626
with:

0 commit comments

Comments
 (0)