Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/automated-main-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ jobs:
floating_tag="v${LATEST_FLOATING_VERSION#v}" # strip the leading "v" if present
echo "Found tag ${floating_tag} re-creating it to point to latest commit"
git tag -d $floating_tag
echo "${floating_tag} Deleted."
echo "${floating_tag} deleted locally."
git push --delete origin $floating_tag
echo "${floating_tag} deleted from origin."
git tag -a $floating_tag -m "Floating tag for ${floating_tag}"
echo "${floating_tag} Re-created pointing to ${{github.sha}}."
git push origin --tags
echo "${floating_tag} Pushed."
echo "${floating_tag} re-created pointing to ${{ github.sha }}."
git push origin $floating_tag
echo "${floating_tag} pushed to origin."
Loading