From b3ab4f665cf052349ed17b8dac8a48b1bb4f5cdf Mon Sep 17 00:00:00 2001 From: buyfakett Date: Mon, 13 Nov 2023 11:42:06 +0800 Subject: [PATCH] =?UTF-8?q?=20:memo:=20feat:=20=E5=A2=9E=E5=8A=A0=E8=87=AA?= =?UTF-8?q?=E5=8A=A8release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-tag.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/release-tag.yml diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml new file mode 100644 index 0000000..648feb2 --- /dev/null +++ b/.github/workflows/release-tag.yml @@ -0,0 +1,23 @@ +#https://github.com/yyx990803/release-tag + +name: Create Release + +on: + push: + tags: + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + +jobs: + build: + name: Create Release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@master + - name: Create Release for Tag + id: release_tag + uses: yyx990803/release-tag@v1.0.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} \ No newline at end of file