From 821a2809a8a37055f7e1c4f91d2b597334bc4fc6 Mon Sep 17 00:00:00 2001 From: dagecko Date: Tue, 31 Mar 2026 10:24:58 +0200 Subject: [PATCH] fix: extract inline secret from run block in ci.yml --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 705fd7bc4..2c30eb66a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -206,10 +206,12 @@ jobs: - name: Upload to Codacy run: | - CODACY_PROJECT_TOKEN=${{ secrets.CODACY_PROJECT_TOKEN }} \ + CODACY_PROJECT_TOKEN="${CODACY_PROJECT_TOKEN}" \ bash <(curl -Ls https://coverage.codacy.com/get.sh) report \ --force-coverage-parser go -r coverage.out + env: + CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} check-for-fixups: runs-on: ubuntu-latest if: github.ref != 'refs/heads/master'