From 2c55692e3e15d3e882f4b34a4f3065e0c50b4ee6 Mon Sep 17 00:00:00 2001 From: codytseng Date: Tue, 11 Jun 2024 23:49:00 +0800 Subject: [PATCH] feat: add GH_TOKEN --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 37d626c..5a5e775 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,10 +1,17 @@ name: Build/release on: + pull_request: push: tags: - v*.*.* +permissions: + contents: write + +env: + GH_TOKEN: ${{ secrets.ACCESS_TOKEN }} + jobs: release: runs-on: ${{ matrix.os }}