We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1e935ad + 1973325 commit 79992f1Copy full SHA for 79992f1
.github/workflows/ci.yml
@@ -239,9 +239,11 @@ jobs:
239
240
- name: Move latest-master tag to current commit
241
if: github.ref == 'refs/heads/master'
242
- uses: jimeh/update-tags-action@v1
243
- with:
244
- tags: "latest-master"
+ run: |
+ git tag -d latest-master || true
+ git push origin --delete latest-master || true
245
+ git tag latest-master
246
+ git push origin latest-master
247
248
- name: Publish latest master to GitHub
249
0 commit comments