From 3804c79d2e3ceba3f9d083bfc5dae811e95571f2 Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Sun, 17 May 2020 10:08:37 +0200 Subject: [PATCH] Add Versioning GitHub Actions --- .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..f25ee03 --- /dev/null +++ b/.github/workflows/versioning.yml @@ -0,0 +1,15 @@ +name: Keep the versions up-to-date + +on: + release: + types: [published, edited] + +jobs: + actions-tagger: + runs-on: windows-latest + steps: + - uses: Actions-R-Us/actions-tagger@latest + env: + GITHUB_TOKEN: "${{secrets.GITHUB_TOKEN}}" + with: + - publish_latest_tag: true