From 555bfce8b91b837f90c0d4d5603a447b2f2a4ef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20J=2E=20Nu=C3=B1ez=20Madrazo?= Date: Mon, 29 Apr 2024 09:28:39 +0100 Subject: [PATCH] Fix GitHub Actions configuration in release.yml (#205) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alejandro J. Nuñez Madrazo --- .github/workflows/release.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eaafa23..1a416b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,8 +11,16 @@ jobs: release: runs-on: ubuntu-latest steps: + - uses: actions/create-github-app-token@v1 + id: app-token + with: + app-id: ${{ vars.APP_ID }} + private-key: ${{ secrets.APP_SECRET }} + - name: Checkout uses: actions/checkout@v2 + with: + token: ${{ steps.app-token.outputs.token }} - name: Unshallow run: git fetch --prune --unshallow @@ -41,7 +49,7 @@ jobs: - name: Setup Git config run: | git config user.name "GitHub Actions" - git config user.email "<>" + git config user.email github-actions@github.com - name: Add and commit generated files run: |