Skip to content

Commit

Permalink
ci: add workflow for semver latest tags sync (#1706)
Browse files Browse the repository at this point in the history
Co-authored-by: Julian Psotta <[email protected]>
  • Loading branch information
jhaeu and MichaelsJP authored Mar 1, 2024
1 parent edede1d commit e556658
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release-tag-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Sync Semver to major and latest tags
# ... TODO
on:
release:
types:
- released
- edited
push:
tags:
- 'v?[0-9]+.[0-9]+.[0-9]+'
branches:
- 'main'
- 'releases/**'
paths-ignore:
- '**'

jobs:
actions-tagger:
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: Actions-R-Us/actions-tagger@v2
with:
publish_latest_tag: true

0 comments on commit e556658

Please sign in to comment.