Skip to content

Commit

Permalink
Fix GitHub Actions configuration in release.yml (#205)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro J. Nuñez Madrazo <alejandrojnm@gmail.com>
  • Loading branch information
alejandrojnm committed Apr 29, 2024
1 parent b1bec2c commit 555bfce
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit 555bfce

Please sign in to comment.