We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 629b73c commit 63ce77bCopy full SHA for 63ce77b
.github/workflows/release.yml
@@ -22,6 +22,16 @@ jobs:
22
23
- name: Build
24
run: swift build -v -c release
25
+ - name: Import Installer Siging
26
+ uses: apple-actions/import-codesign-certs@v1
27
+ with:
28
+ p12-file-base64: ${{ secrets.CERTIFICATES_INSTALLER_P12 }}
29
+ p12-password: ${{ secrets.CERTIFICATES_INSTALLER_P12_PASSWORD }}
30
+ - name: Import Application Siging
31
32
33
+ p12-file-base64: ${{ secrets.CERTIFICATES_APPLICATION_P12 }}
34
+ p12-password: ${{ secrets.CERTIFICATES_APPLICATION_P12_PASSWORD }}
35
- name: Code Sign
36
run: |
37
codesign --force --options runtime --sign 'Developer ID Application: Mathijs Kadijk (5Z49PA849J)' .build/release/rswift
0 commit comments