From cf2893202177d32bd7a1312d7c3d162e8b642d8d Mon Sep 17 00:00:00 2001 From: Ryosuke Ito Date: Wed, 10 Aug 2022 11:35:57 +0900 Subject: [PATCH] Add GITHUB_TOKEN --- .github/workflows/package.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 205861c..7d5c978 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -21,5 +21,9 @@ jobs: - run: man -P cat 1 xcnew - name: Create release run: gh release create '${{ github.ref }}' --generate-notes + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload release asset run: gh release upload '${{ github.ref }}' xcnew.pkg + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}