From 0f67b836bb947b344f6ebb1ad7f1d48b848b3714 Mon Sep 17 00:00:00 2001 From: Naveed Jooma Date: Thu, 28 Mar 2024 17:31:37 -0400 Subject: [PATCH] Add repo token to release workflow --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 585ac75..2c96459 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,6 +36,8 @@ jobs: - name: Checkout Code uses: actions/checkout@v4 + with: + token: ${{ secrets.REPO_READ_TOKEN }} - name: Setup rust toolchain uses: dtolnay/rust-toolchain@stable @@ -162,7 +164,7 @@ jobs: - name: Setup alpine dependencies if: ${{ startsWith(matrix.image, 'alpine') }} shell: sh - run: | + run: | apk add libgcc \ curl \ build-base \