Skip to content

Commit

Permalink
Push tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Bromeon committed Jun 23, 2024
1 parent cf11372 commit 435077e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,11 @@ jobs:
- name: "Commit post-processed changes"
run: git commit -am "Postprocess docs for v${{ env.GDEXT_PUBLISHED_VERSION }}"

- name: "Push changes"
run: git push origin releases
- name: "Push changes + tag version"
run: |
versionTag="v$GDEXT_PUBLISHED_VERSION"
git tag "$versionTag"
git push origin releases "$versionTag"
publish:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 435077e

Please sign in to comment.