We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de08d7f commit b4b41a4Copy full SHA for b4b41a4
.github/workflows/release.yml
@@ -18,6 +18,18 @@ jobs:
18
aws configure set aws_secret_access_key ${{ secrets.R2_OOMOL_STATIC_S3_SK }}
19
aws configure set region auto
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
+
33
- name: Checkout
34
uses: actions/checkout@v4
35
with:
0 commit comments