Skip to content

Commit

Permalink
Merge pull request #425 from spowelljr/autoTagLatest
Browse files Browse the repository at this point in the history
CI: Auto tag latest on release
  • Loading branch information
medyagh authored Apr 9, 2024
2 parents 317d923 + fbad1a0 commit 479a91c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/auto-tag-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "auto-tag-latest"
on:
release:
types: [published]
jobs:
auto-tag-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- run: |
git push --delete origin latest
git tag latest ${{ github.ref_name }}
git push origin latest

0 comments on commit 479a91c

Please sign in to comment.