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
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,11 @@ jobs:

- name: Move latest-master tag to current commit
if: github.ref == 'refs/heads/master'
uses: jimeh/update-tags-action@v1
with:
tags: "latest-master"
run: |
git tag -d latest-master || true
git push origin --delete latest-master || true
git tag latest-master
git push origin latest-master

- name: Publish latest master to GitHub
if: github.ref == 'refs/heads/master'
Expand Down
Loading