File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -237,6 +237,25 @@ jobs:
237
237
export WXL_DIR=../wxlibArm
238
238
export OUTDIR=output/makeArm INTDIR=intermediate/makeArm
239
239
make mac
240
+ - name : Prepare Signature
241
+ if : github.event_name != 'pull_request'
242
+ env :
243
+ CERTIFICATE : ${{ secrets.APPLE_CERTIFICATE }}
244
+ run : echo $CERTIFICATE | base64 --decode -o certificate.p12
245
+ - name : Sign Command Line Tool
246
+ if : github.event_name != 'pull_request'
247
+ uses : indygreg/apple-code-sign-action@v1.0
248
+ with :
249
+ input_path : output/makeArm/nsfplac
250
+ p12_file : certificate.p12
251
+ p12_password : ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
252
+ - name : Sign Application Bundle
253
+ if : github.event_name != 'pull_request'
254
+ uses : indygreg/apple-code-sign-action@v1.0
255
+ with :
256
+ input_path : output/makeArm/nsfplay.app
257
+ p12_file : certificate.p12
258
+ p12_password : ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
240
259
- name : Prepare Artifacts
241
260
run : |
242
261
mkdir artifact
You can’t perform that action at this time.
0 commit comments