Skip to content

Commit

Permalink
ci: restore CODE_SIGNING_* vars for macOS
Browse files Browse the repository at this point in the history
These were accidentally deleted when shuffling macOS setup steps to an
`macos-setup/action.yml` and back. These variables make Xcode behavior
consistent across different GHA images.
  • Loading branch information
cwillisf committed Dec 6, 2023
1 parent 49244db commit 9e9a849
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,13 @@ jobs:
### macOS setup

- name: "macOS: Setup environment"
if: runner.os == 'macOS'
run: |
cat >> $GITHUB_ENV <<EOF
CODE_SIGNING_ALLOWED=${{ env.SCRATCH_SHOULD_SIGN }}
CODE_SIGNING_REQUIRED=${{ env.SCRATCH_SHOULD_SIGN }}
EOF
- name: "macOS: Setup keys for Fastlane"
if: runner.os == 'macOS' && env.FASTLANE_ACCESS_KEY != ''
uses: webfactory/[email protected]
Expand Down

0 comments on commit 9e9a849

Please sign in to comment.