From 60db01a8a3a48a06adf831f78b9fb1a27f6b97b7 Mon Sep 17 00:00:00 2001 From: Naoya Yamashita Date: Thu, 19 Nov 2020 18:35:40 +0900 Subject: [PATCH] add update-majorver action --- .github/workflows/release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..0a69b7a --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,15 @@ +name: Update Major Version Tag + +on: + push: + tags: + - "v*" + +jobs: + update-majorver: + name: Update Major Version Tag + runs-on: ubuntu-latest + steps: + - uses: nowactions/update-majorver@v1 + with: + github_token: ${{ secrets. GITHUB_TOKEN }}