From f2a9318a8868271dc24b06453107b8624e4f6f0b Mon Sep 17 00:00:00 2001 From: OliverNChalk <11343499+OliverNChalk@users.noreply.github.com> Date: Mon, 25 Nov 2024 13:25:32 +0100 Subject: [PATCH] asd --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52d1222..2d7827e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,12 +37,16 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - if: "${{ secrets.CI_READ }} != ''" + env: + ci_read: ${{ secrets.CI_READ }} + if: ${{ env.ci_read != '' }} with: - token: ${{ secrets.CI_READ }} + token: ${{ env.ci_read }} submodules: recursive - uses: actions/checkout@v3 - if: "${{ secrets.CI_READ }} == ''" + env: + ci_read: ${{ secrets.CI_READ }} + if: ${{ env.ci_read == '' }} with: submodules: recursive - uses: ./.github/workflows/actions/rust-toolchain