Skip to content

Commit

Permalink
CI: add workflow to actualise git-tags by version
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook committed May 6, 2024
1 parent 3ed93be commit 1a6d5c6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Actualise git-tags by version
on:
release:
types:
- released
- edited
push:
tags:
- 'v?[0-9]+.[0-9]+.[0-9]+'
branches:
- main
- master
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 1a6d5c6

Please sign in to comment.