Skip to content

Commit

Permalink
Add two more helpful steps to update-major-version-tag workflow (#231)
Browse files Browse the repository at this point in the history
Add steps to update-major-version-tag workflow to: 
* Reset the major version tag on the local runner in case it's needed for subsequent workflow steps; and 
* Display details on the new major version tag to verify it points to the latest release.
  • Loading branch information
afinetooth authored Oct 16, 2024
1 parent 4cdef0b commit 29d7fa2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/update-major-version-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,9 @@ jobs:
git fetch --tags
git tag -f ${{ env.major_version }} ${{ github.event.release.tag_name }}
git push origin ${{ env.major_version }} --force
- name: Fetch Updated Tags
run: git fetch --tags --force

- name: Verify Tag
run: git show ${{ env.major_version }}

0 comments on commit 29d7fa2

Please sign in to comment.