ci: push tag during a release (#51)

This commit is contained in:
Tyler Wilding 2022-08-02 14:29:28 -04:00 committed by GitHub
parent 2367c874a8
commit 74d427e913
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,8 +37,9 @@ jobs:
npx vsce package npx vsce package
npx vsce publish ${{ github.event.inputs.bump }} npx vsce publish ${{ github.event.inputs.bump }}
git push git push
git push tag $(git tag --points-at HEAD)
- name: Create Release - name: Create Release
env: env:
GITHUB_TOKEN: ${{ secrets.BOT_PAT }} GITHUB_TOKEN: ${{ secrets.BOT_PAT }}
run: gh release create --generate-notes --repo open-goal/opengoal-vscode ./*.vsix run: gh release create $(git tag --points-at HEAD) --generate-notes --repo open-goal/opengoal-vscode ./*.vsix