We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc1875d commit b9863f7Copy full SHA for b9863f7
1 file changed
.github/workflows/automated-main-merge.yml
@@ -28,8 +28,10 @@ jobs:
28
floating_tag="v${LATEST_FLOATING_VERSION#v}" # strip the leading "v" if present
29
echo "Found tag ${floating_tag} re-creating it to point to latest commit"
30
git tag -d $floating_tag
31
- echo "${floating_tag} Deleted."
+ echo "${floating_tag} deleted locally."
32
+ git push --delete origin $floating_tag
33
+ echo "${floating_tag} deleted from origin."
34
git tag -a $floating_tag -m "Floating tag for ${floating_tag}"
- echo "${floating_tag} Re-created pointing to ${{github.sha}}."
- git push origin --tags
35
- echo "${floating_tag} Pushed."
+ echo "${floating_tag} re-created pointing to ${{ github.sha }}."
36
+ git push origin $floating_tag
37
+ echo "${floating_tag} pushed to origin."
0 commit comments