Skip to content

Commit

Permalink
[WIP] Add initial re-tag action
Browse files Browse the repository at this point in the history
  • Loading branch information
acoulton committed Dec 17, 2024
1 parent a374943 commit e54e0f3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Release

on:
push:

jobs:

tag-release:
runs-on: ubuntu-latest

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 show v1

0 comments on commit e54e0f3

Please sign in to comment.