Skip to content

Commit

Permalink
add cert to keychain
Browse files Browse the repository at this point in the history
  • Loading branch information
Hbbb committed Feb 5, 2024
1 parent 180f367 commit 60ac26a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,17 @@ jobs:
- run: npm i
- run: npx vite build

- name: Decode and save the certificate
run: |
echo "${{ secrets.MAC_CERTS }}" | base64 --decode > ./electron-cert.p12
- name: setup keychain
run: |
security import ./electron-cert.p12 -P ${{ secrets.mac_certs_password }}
- name: electron mac os security identities
run: security find-identity -v

- name: test secrets
run: |
echo "=========================== testing secrets =================================="
Expand Down

0 comments on commit 60ac26a

Please sign in to comment.