From 5dfaef25942ce55b1ce0b644fc22dd2b744e5c90 Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Wed, 7 Aug 2024 00:28:13 +0200 Subject: [PATCH] chore: Enable persisting credentials in GitHub workflows for Linux, macOS, and Windows builds --- .github/workflows/linux-alpha-build.yml | 2 +- .github/workflows/macos-alpha-build.yml | 2 +- .github/workflows/windows-alpha-build.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux-alpha-build.yml b/.github/workflows/linux-alpha-build.yml index 6d2a9cdb8..6195821a1 100644 --- a/.github/workflows/linux-alpha-build.yml +++ b/.github/workflows/linux-alpha-build.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive - persist-credentials: true + token: ${{ secrets.DEPLOY_KEY }} # Give the runner some swap space in an attempt to stop gkrust from crashing the build - name: Set Swap Space diff --git a/.github/workflows/macos-alpha-build.yml b/.github/workflows/macos-alpha-build.yml index f2eb67d0d..48c18e367 100644 --- a/.github/workflows/macos-alpha-build.yml +++ b/.github/workflows/macos-alpha-build.yml @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive - persist-credentials: true + token: ${{ secrets.DEPLOY_KEY }} - name: Setup git run: | diff --git a/.github/workflows/windows-alpha-build.yml b/.github/workflows/windows-alpha-build.yml index 0f78b802b..0d97da663 100644 --- a/.github/workflows/windows-alpha-build.yml +++ b/.github/workflows/windows-alpha-build.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive - persist-credentials: true + token: ${{ secrets.DEPLOY_KEY }} # Give the runner some swap space in an attempt to stop gkrust from crashing the build