Skip to content

Commit

Permalink
import siging
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasharkema committed Apr 29, 2020
1 parent 629b73c commit 63ce77b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ jobs:

- name: Build
run: swift build -v -c release
- name: Import Installer Siging
uses: apple-actions/import-codesign-certs@v1
with:
p12-file-base64: ${{ secrets.CERTIFICATES_INSTALLER_P12 }}
p12-password: ${{ secrets.CERTIFICATES_INSTALLER_P12_PASSWORD }}
- name: Import Application Siging
uses: apple-actions/import-codesign-certs@v1
with:
p12-file-base64: ${{ secrets.CERTIFICATES_APPLICATION_P12 }}
p12-password: ${{ secrets.CERTIFICATES_APPLICATION_P12_PASSWORD }}
- name: Code Sign
run: |
codesign --force --options runtime --sign 'Developer ID Application: Mathijs Kadijk (5Z49PA849J)' .build/release/rswift
Expand Down

0 comments on commit 63ce77b

Please sign in to comment.