Skip to content

Commit

Permalink
test multiple certs in 2 steps
Browse files Browse the repository at this point in the history
  • Loading branch information
emawby committed Apr 9, 2024
1 parent 465b8f0 commit 0f8cf3e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,17 @@ jobs:
with:
ref: ${{env.release_branch}}

- name: Install the Apple certificate and provisioning profile
- name: Install the Apple distribution certificate and provisioning profile
uses: apple-actions/import-codesign-certs@v2
with:
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }}
p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}

- name: Install the Apple distribution certificate and provisioning profile
uses: apple-actions/import-codesign-certs@v2
with:
p12-file-base64: ${{ secrets.DEV_CERTIFICATES_P12 }}
p12-password: ${{ secrets.DEV_CERTIFICATES_P12_PASSWORD }}
# - name: Bump Version Number
# run: |
- name: Build Binaries
Expand Down

0 comments on commit 0f8cf3e

Please sign in to comment.