From 1297b0e671c6572c98c43064728e66839dcc388f Mon Sep 17 00:00:00 2001 From: Xyphuz Date: Sun, 8 May 2022 14:57:06 +0800 Subject: [PATCH] chore: add release-tagged-version.yml --- .github/workflows/release-tagged-version.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release-tagged-version.yml diff --git a/.github/workflows/release-tagged-version.yml b/.github/workflows/release-tagged-version.yml new file mode 100644 index 0000000..ad1c11f --- /dev/null +++ b/.github/workflows/release-tagged-version.yml @@ -0,0 +1,18 @@ +--- +name: "Release Tagged Version" + +on: + push: + tags: + - "v*" + +jobs: + tagged-release: + runs-on: "ubuntu-latest" + + steps: + - name: "Release Tagged Version" + uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + prerelease: false \ No newline at end of file