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