From 716a1bccc73abb808d03db79d62425c566dff929 Mon Sep 17 00:00:00 2001 From: Thomas Hughes Date: Mon, 10 Feb 2020 09:04:07 +0100 Subject: [PATCH] Add versioning action to slide major versions w/ release --- .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..f314443 --- /dev/null +++ b/.github/workflows/versioning.yml @@ -0,0 +1,15 @@ +name: Keep the versions up-to-date + +on: + release: + types: [published] + +jobs: + actions-tagger: + runs-on: windows-latest + steps: + - uses: Actions-R-Us/actions-tagger@latest + with: + publish_latest: true + env: + GITHUB_TOKEN: '${{secrets.GITHUB_TOKEN}}'