From 0fb842545f25e90520ebcfe4779f887690b327e7 Mon Sep 17 00:00:00 2001 From: andy5995 Date: Sat, 3 Feb 2024 01:10:58 -0600 Subject: [PATCH] CI: Add versioning workflow --- .github/workflows/versioning.yml | 15 +++++++++++++++ 1 file changed, 15 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..f57da51 --- /dev/null +++ b/.github/workflows/versioning.yml @@ -0,0 +1,15 @@ +name: Keep the versions up-to-date +# https://github.com/marketplace/actions/actions-tagger +# https://github.com/actions/toolkit/blob/master/docs/action-versioning.md + +on: + release: + types: [published, edited] + +jobs: + actions-tagger: + runs-on: windows-latest + steps: + - uses: Actions-R-Us/actions-tagger@latest + with: + publish_latest_tag: true