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 2437de7 commit 2be95a1Copy full SHA for 2be95a1
.github/workflows/deploy.yml
@@ -9,7 +9,7 @@ on:
9
jobs:
10
deploy-codeedit-cli:
11
name: Deploying CodeEdit CLI
12
- runs-on: macos-12
+ runs-on: [self-hosted, macOS]
13
steps:
14
- name: Checkout Repository
15
uses: actions/checkout@v2
@@ -30,7 +30,7 @@ jobs:
30
security create-keychain -p "$KEYCHAIN_PWD" "$KEYCHAIN_DB"
31
security set-keychain-settings -lut "$KEYCHAIN_TIMEOUT" "$KEYCHAIN_DB"
32
security unlock-keychain -p "$KEYCHAIN_PWD" "$KEYCHAIN_DB"
33
- echo -n "$DEV_CERT_B64" | base64 --decode --output "$DEV_CERT_P12"
+ echo -n "$DEV_CERT_B64" | base64 --decode -o "$DEV_CERT_P12"
34
security import "$DEV_CERT_P12" -P "$DEV_CERT_PWD" -A -t cert -f pkcs12 -k "$KEYCHAIN_DB"
35
security list-keychain -d user -s "$KEYCHAIN_DB"
36
0 commit comments