From b9452e1cc062378c13040a65ee04af0da4918bd4 Mon Sep 17 00:00:00 2001 From: "qbox-duck[bot]" <152818034+qbox-duck[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 11:47:09 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'.github/'=20wi?= =?UTF-8?q?th=20remote=20'repo-template/.github/'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e0215fc..9d3f19b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,11 +11,18 @@ jobs: name: Create New Release runs-on: ubuntu-latest steps: + - name: Get App Token + uses: actions/create-github-app-token@v1.6.1 + id: generate_token + with: + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.PRIVATE_KEY }} + - name: Checkout Repository uses: actions/checkout@v4.1.1 with: fetch-depth: 0 - ref: ${{ github.event.repository.default_branch }} + token: ${{ steps.generate_token.outputs.token }} - name: Setup node uses: actions/setup-node@v2 @@ -32,10 +39,7 @@ jobs: with: add: fxmanifest.lua push: true - author_name: Manifest Bumper - author_email: 41898282+github-actions[bot]@users.noreply.github.com message: 'chore: bump manifest version to ${{ inputs.version }}' - tag_push: '--force' - name: Install ZIP run: sudo apt install zip