Skip to content

Commit

Permalink
ci: add workflow for semver latest tags sync
Browse files Browse the repository at this point in the history
  • Loading branch information
jhaeu committed Mar 1, 2024
1 parent edede1d commit 1ef959d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release-tag-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Sync Semver to major and latest tags
# ... TODO
on:
release:
types:
- released
- edited
push:
tags:
- 'v?[0-9]+.[0-9]+.[0-9]+'
branches:
- 'ci/release-tag-latest'
- 'main'
- 'releases/**'
branches-ignore:
- '**'
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 1ef959d

Please sign in to comment.