-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c27918
commit 76d6db7
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|