Skip to content

Commit

Permalink
signed macos binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbradsmith committed Apr 14, 2024
1 parent 5c27918 commit 76d6db7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,25 @@ jobs:
export WXL_DIR=../wxlibArm
export OUTDIR=output/makeArm INTDIR=intermediate/makeArm
make mac
- name: Prepare Signature
if: github.event_name != 'pull_request'
env:
CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
run: echo $CERTIFICATE | base64 --decode -o certificate.p12
- name: Sign Command Line Tool
if: github.event_name != 'pull_request'
uses: indygreg/[email protected]
with:
input_path: output/makeArm/nsfplac
p12_file: certificate.p12
p12_password: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
- name: Sign Application Bundle
if: github.event_name != 'pull_request'
uses: indygreg/[email protected]
with:
input_path: output/makeArm/nsfplay/app
p12_file: certificate.p12
p12_password: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
- name: Prepare Artifacts
run: |
mkdir artifact
Expand Down

0 comments on commit 76d6db7

Please sign in to comment.