From 1a6d5c6a3b50c279cf75903ff0ec65c3822f5a93 Mon Sep 17 00:00:00 2001 From: Alexander Koz Date: Mon, 6 May 2024 22:59:11 +0400 Subject: [PATCH] CI: add workflow to actualise git-tags by version --- .github/workflows/versioning.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/versioning.yml diff --git a/.github/workflows/versioning.yml b/.github/workflows/versioning.yml new file mode 100644 index 0000000..20c7cc1 --- /dev/null +++ b/.github/workflows/versioning.yml @@ -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