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 60028bf commit 9c8f8f2Copy full SHA for 9c8f8f2
1 file changed
.github/workflows/meta-package.yml
@@ -75,10 +75,11 @@ jobs:
75
token: ${{ steps.generate-token.outputs.token }}
76
77
- name: Create a tag
78
- uses: rickstaa/action-create-tag@v1
79
- with:
80
- tag: ${{ matrix.tag }}
81
- message: ${{ matrix.tag }}
+ env:
+ TAG: ${{ matrix.tag }}
+ run: |
+ git tag -a "${TAG}" -m "${TAG}"
82
+ git push origin "${TAG}"
83
84
release:
85
name: Release
0 commit comments