From 26fada19b6e5f98d2a2885d39e8aff1428a7866d Mon Sep 17 00:00:00 2001 From: Pythagodzilla Date: Fri, 9 Jan 2026 01:07:21 +0800 Subject: [PATCH] =?UTF-8?q?=E9=95=BF=E5=A4=A7=E4=BA=86=E8=87=AA=E5=B7=B1?= =?UTF-8?q?=E4=BC=9A=E5=88=A0=EF=BC=8C=E5=85=88=E8=AE=A9=E6=88=91=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E4=B8=80=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f903f73..fefed2c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,12 @@ on: branches: - chrome-docker + tags: + - v* + +permissions: + contents: write + jobs: hello_world: runs-on: ubuntu-latest @@ -20,4 +26,10 @@ jobs: zip -r dist/buctAuthentication.zip . -x "*.git*" -x "dist/*" - name: List dist files - run: ls -la dist \ No newline at end of file + run: ls -la dist + + - name: Upload Release + if: startsWith(github.ref, 'refs/tags/') + uses: softprops/action-gh-release@v2 + with: + files: dist/buctAuthentication.zip \ No newline at end of file