File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 18
18
aws configure set aws_secret_access_key ${{ secrets.R2_OOMOL_STATIC_S3_SK }}
19
19
aws configure set region auto
20
20
21
+ - name : Setup Codesign
22
+ run : |
23
+ echo $MACOS_CERTIFICATE | base64 --decode > certificate.p12
24
+ security create-keychain -p action build.keychain
25
+ security default-keychain -s build.keychain
26
+ security unlock-keychain -p action build.keychain
27
+ security import certificate.p12 -k build.keychain -P $MACOS_CERTIFICATE_PWD -T /usr/bin/codesign
28
+ security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k action build.keychain
29
+ env :
30
+ MACOS_CERTIFICATE : ${{ secrets.MACOS_CERTIFICATE }}
31
+ MACOS_CERTIFICATE_PWD : ${{ secrets.MACOS_CERTIFICATE_PWD }}
32
+
21
33
- name : Checkout
22
34
uses : actions/checkout@v4
23
35
with :
You can’t perform that action at this time.
0 commit comments