We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ebf69b commit 5094232Copy full SHA for 5094232
.github/workflows/release.yml
@@ -19,6 +19,14 @@ jobs:
19
brew install graphicsmagick imagemagick
20
npm install --global create-dmg
21
pod install
22
+
23
+ # Import Certificates for sign
24
+ - name: Import Certificates
25
+ id: import_certs
26
+ uses: apple-actions/import-codesign-certs@v1
27
+ with:
28
+ p12-file-base64: ${{ secrets.CERTIFICATES_P12 }}
29
+ p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}
30
31
# Build Thinkpad Assistant
32
- name: Build
@@ -28,8 +36,7 @@ jobs:
36
-destination "platform=macOS"
37
-configuration Release
38
-derivedDataPath build
- CODE_SIGN_IDENTITY=""
- CODE_SIGNING_REQUIRED=NO
39
+ CODE_SIGN_IDENTITY=- | xcpretty
33
40
34
41
# Uncomment when code signing is finished
35
42
#- name: Export
0 commit comments