Skip to content

Commit

Permalink
Run on both macos 13 and 14
Browse files Browse the repository at this point in the history
  • Loading branch information
iamazeem committed Dec 12, 2024
1 parent c95377e commit 24dba50
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -731,11 +731,12 @@ jobs:
macos-codesign:
strategy:
matrix:
# os: [macos-13, macos-14]
os: [macos-13]
os: [macos-13, macos-14]
# os: [macos-13]

runs-on: ${{ matrix.os }}
timeout-minutes: 15
continue-on-error: true

steps:
- name: Set up zsv+lib
Expand All @@ -761,8 +762,8 @@ jobs:
security set-keychain-settings -t 3600 -u build.keychain
openssl version
if ! security import cert.p12 -k build.keychain -P '${{ secrets.MACOS_CERT_PASSWORD }}' -A -T /usr/bin/codesign; then
openssl pkcs12 -in cert.p12 -nocerts -out "codesign.key" -nodes -passin pass:'${{ secrets.MACOS_CERT_PASSWORD }}'
openssl pkcs12 -in cert.p12 -clcerts -nokeys -out "codesign.crt" -passin pass:'${{ secrets.MACOS_CERT_PASSWORD }}'
openssl pkcs12 -in cert.p12 -nocerts -out "codesign.key" -nodes -password pass:'${{ secrets.MACOS_CERT_PASSWORD }}'
openssl pkcs12 -in cert.p12 -clcerts -nokeys -out "codesign.crt" -password pass:'${{ secrets.MACOS_CERT_PASSWORD }}'
ls -hl codesign.{key,crt}
security import "codesign.key" -k build.keychain -P "" -A -T /usr/bin/codesign
security import "codesign.crt" -k build.keychain -P "" -A -T /usr/bin/codesign
Expand Down

0 comments on commit 24dba50

Please sign in to comment.