Skip to content

Commit 48d39d2

Browse files
committed
Add a couple of steps to: (1) reset the major version tag on the local runner in case it's needed for suqequent actions; and (2) Display details on the new major version tag to verify it worked as expected.
1 parent 4cdef0b commit 48d39d2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: .github/workflows/update-major-version-tag.yml

+6
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,9 @@ jobs:
2424
git fetch --tags
2525
git tag -f ${{ env.major_version }} ${{ github.event.release.tag_name }}
2626
git push origin ${{ env.major_version }} --force
27+
28+
- name: Fetch Updated Tags
29+
run: git fetch --tags --force
30+
31+
- name: Verify Tag
32+
run: git show ${{ env.major_version }}

0 commit comments

Comments
 (0)