File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,8 @@ jobs:
121
121
env :
122
122
KEYCHAIN : " sign.keychain"
123
123
INSTALLER_CERT_MAC_PATH : " /tmp/ArduinoCerts2020.p12"
124
- KEYCHAIN_PASSWORD : keychainpassword # Arbitrary password for a keychain that exists only for the duration of the job, so not secret
124
+ # Arbitrary password for a keychain that exists only for the duration of the job, so not secret
125
+ KEYCHAIN_PASSWORD : keychainpassword
125
126
run : |
126
127
echo "${{ secrets.INSTALLER_CERT_MAC_P12 }}" | base64 --decode > "${{ env.INSTALLER_CERT_MAC_PATH }}"
127
128
security create-keychain -p "${{ env.KEYCHAIN_PASSWORD }}" "${{ env.KEYCHAIN }}"
Original file line number Diff line number Diff line change 32
32
DEFAULT_GO_MODULE_PATH : ./
33
33
DEFAULT_GO_PACKAGES :
34
34
sh : |
35
- echo $(cd {{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}} && go list ./... | tr '\n' ' ' || echo '"ERROR: Unable to discover Go packages"')
35
+ echo $(
36
+ cd {{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}} &&
37
+ go list ./... | tr '\n' ' ' ||
38
+ echo '"ERROR: Unable to discover Go packages"'
39
+ )
36
40
37
41
tasks :
38
42
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-workflows-task/Taskfile.yml
You can’t perform that action at this time.
0 commit comments