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 44f60ad commit a3445dfCopy full SHA for a3445df
.github/workflows/release.yml
@@ -37,7 +37,7 @@ jobs:
37
run: |
38
swift build -c release --arch x86_64 --arch arm64
39
40
- - name: Delete temp keychain
+ - name: Delete temp keychain from previous run
41
42
/usr/bin/security delete-keychain signing_temp.keychain || true
43
- name: Import Signing Certificates
@@ -50,6 +50,10 @@ jobs:
50
codesign --force --options runtime --sign "$IDENTITY" .build/apple/Products/Release/rswift
51
env:
52
IDENTITY: 'Developer ID Application: Nonstrict B.V. (WT5N9FK54M)'
53
+ - name: Delete temp keychain from this run
54
+ if: always()
55
+ run: |
56
+ /usr/bin/security delete-keychain signing_temp.keychain || true
57
- name: Store build artifact
58
uses: actions/upload-artifact@v3
59
with:
0 commit comments