Skip to content

Commit

Permalink
[WIP] Add action to update v1 on every merge
Browse files Browse the repository at this point in the history
Currently running on each push to make sure it works
  • Loading branch information
acoulton committed Dec 17, 2024
1 parent e54e0f3 commit 779ac6a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ jobs:
tag-release:
runs-on: ubuntu-latest

permissions:
contents: write

steps:
- uses: actions/checkout@v4

- name: Re-tag v1
# Note, the current `v1` tag won't have been pulled by "checkout" above, so we can just create a new one
run: git tag v1
run: git tag v1 && git show --oneline v1

- run: git show v1
- name: Publish v1
run: git push -f origin v1

0 comments on commit 779ac6a

Please sign in to comment.