From f4a4fd5c1949ef4cda577db7875a70277b3d7141 Mon Sep 17 00:00:00 2001 From: Jan Richter Date: Thu, 11 Jul 2024 11:53:02 +0200 Subject: [PATCH] Fix for upload binaries to release workflow The build and upload eggs release workflow is using Mr.Avocado token, but this token has never been generated for this workflow, therefore it is not working. This commit adds the step with token generation, which will fix the issue. Signed-off-by: Jan Richter --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f6a5d87777..abcb5f9eae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -110,6 +110,13 @@ jobs: fail-fast: false steps: + - name: Generate token + id: generate_token + uses: tibdex/github-app-token@021a2405c7f990db57f5eae5397423dcc554159c + with: + app_id: ${{ secrets.MR_AVOCADO_ID }} + installation_id: ${{ secrets.MR_AVOCADO_INSTALLATION_ID }} + private_key: ${{ secrets.MR_AVOCADO_PRIVATE_KEY }} - uses: actions/checkout@v4 with: persist-credentials: false