We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef5681f commit efbfb78Copy full SHA for efbfb78
.github/workflows/release.yml
@@ -192,6 +192,13 @@ jobs:
192
echo "$ASSETS" >> $GITHUB_ENV
193
echo "EOF" >> $GITHUB_ENV
194
195
+ - name: Create and push tag
196
+ run: |
197
+ git config user.name "GitHub Action"
198
+ git config user.email "action@github.com"
199
+ git tag -a "v${{ env.VERSION }}" -m "Release v${{ env.VERSION }}"
200
+ git push origin "v${{ env.VERSION }}"
201
+
202
- name: Create GitHub Release and Upload Assets
203
uses: softprops/action-gh-release@v2
204
with:
0 commit comments