Skip to content

Commit 1973325

Browse files
Try to fix latest-master release
1 parent 1e935ad commit 1973325

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,11 @@ jobs:
239239

240240
- name: Move latest-master tag to current commit
241241
if: github.ref == 'refs/heads/master'
242-
uses: jimeh/update-tags-action@v1
243-
with:
244-
tags: "latest-master"
242+
run: |
243+
git tag -d latest-master || true
244+
git push origin --delete latest-master || true
245+
git tag latest-master
246+
git push origin latest-master
245247
246248
- name: Publish latest master to GitHub
247249
if: github.ref == 'refs/heads/master'

0 commit comments

Comments
 (0)