From b3f81cfd390ae5b34c8c8b2346caeecea18d557b Mon Sep 17 00:00:00 2001 From: John McBride Date: Mon, 19 Aug 2024 15:34:43 -0600 Subject: [PATCH] fix: Generates a token so the open-sauce bot can push to beta Signed-off-by: John McBride --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bf2ee412..06e21c7a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,6 +56,14 @@ jobs: - build runs-on: ubuntu-latest timeout-minutes: 10 + steps: + - name: Generate token + id: generate_token + uses: tibdex/github-app-token@v1 + with: + app_id: ${{ secrets.OS_GITHUB_APP_ID }} + private_key: ${{ secrets.OS_GITHUB_APP_PRIVATE_KEY }} + steps: - name: "☁️ checkout repository" uses: actions/checkout@v3