From 4864633fdf05443eb19bcc313a275a5f416e49a2 Mon Sep 17 00:00:00 2001 From: hussainweb Date: Tue, 18 Jan 2022 11:28:20 -0500 Subject: [PATCH] chore: add a mechanism to update version tags --- .github/workflows/versioning.yml | 13 +++++++++++++ 1 file changed, 13 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..91bb03e --- /dev/null +++ b/.github/workflows/versioning.yml @@ -0,0 +1,13 @@ +name: Keep the versions up-to-date + +on: + release: + types: [published, edited] + +jobs: + actions-tagger: + runs-on: ubuntu-latest + steps: + - uses: Actions-R-Us/actions-tagger@v2 + with: + publish_latest_tag: true