Skip to content

Commit

Permalink
qa: force tag overwrite/push
Browse files Browse the repository at this point in the history
Otherwise, these steps will fail on subsequent releases.

Signed-off-by: Matthew Weier O'Phinney <[email protected]>
  • Loading branch information
weierophinney committed Feb 4, 2021
1 parent 97a482b commit a7f5c3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-tags.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release container
name: Release major/minor tags

on:
push:
Expand Down Expand Up @@ -35,6 +35,6 @@ jobs:
run: |
for TAG in ${TAGS};do
echo "Creating and pushing ${TAG}"
git tag ${TAG} ${ORIGINAL_TAG}
git push origin ${TAG}
git tag -f ${TAG} ${ORIGINAL_TAG}
git push -f origin v${TAG}
done

0 comments on commit a7f5c3f

Please sign in to comment.