From b6ba5b2a065e2890dd384b3f96287f36e877fd90 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Mon, 3 May 2021 07:23:32 +1200 Subject: [PATCH] On tag create release --- .github/workflows/on-tag.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/on-tag.yml diff --git a/.github/workflows/on-tag.yml b/.github/workflows/on-tag.yml new file mode 100644 index 0000000..610ce1d --- /dev/null +++ b/.github/workflows/on-tag.yml @@ -0,0 +1,12 @@ +on: push +name: Release +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Create GitHub release + uses: Roang-zero1/github-create-release-action@master + with: + version_regex: ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+ + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file