From f10727bb1c3120978cde0d92c6b3c6dd8a46dbb5 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Fri, 22 May 2026 15:47:05 +0000 Subject: [PATCH] fix(ci): use correct Apple signing secret names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Align CI secret references with the actual secret names set in the production environment: - CSC_LINK → APPLE_CERT_DATA - CSC_KEY_PASSWORD → APPLE_CERT_PASSWORD - vars.APPLE_TEAM_ID → secrets.APPLE_TEAM_ID --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ec513182..4f3266032 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -259,7 +259,7 @@ jobs: run: pnpm install --frozen-lockfile - name: Setup codesign dependencies env: - APPLE_CERT_DATA: ${{ secrets.CSC_LINK }} + APPLE_CERT_DATA: ${{ secrets.APPLE_CERT_DATA }} APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }} run: | curl -L 'https://github.com/indygreg/apple-platform-rs/releases/download/apple-codesign%2F0.29.0/apple-codesign-0.29.0-x86_64-unknown-linux-musl.tar.gz' -o 'rcodesign.tar.gz' @@ -297,8 +297,8 @@ jobs: RELEASE_BUILD: ${{ github.event_name != 'pull_request' && '1' || '' }} # Codesigning: only on main/release pushes (fork PRs lack secrets) FOSSILIZE_SIGN: ${{ github.event_name == 'push' && (github.ref_name == 'main' || startsWith(github.ref_name, 'release/')) && 'y' || 'n' }} - APPLE_CERT_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }} - APPLE_TEAM_ID: ${{ vars.APPLE_TEAM_ID }} + APPLE_CERT_PASSWORD: ${{ secrets.APPLE_CERT_PASSWORD }} + APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} run: pnpm run build -- --target ${{ matrix.target }} - name: Smoke test if: matrix.can-test