diff --git a/.github/workflows/update-major-version-tag.yml b/.github/workflows/update-major-version-tag.yml index 0d9ca810..ed7cacd2 100644 --- a/.github/workflows/update-major-version-tag.yml +++ b/.github/workflows/update-major-version-tag.yml @@ -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 }} \ No newline at end of file