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:
121121 env :
122122 KEYCHAIN : " sign.keychain"
123123 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
125126 run : |
126127 echo "${{ secrets.INSTALLER_CERT_MAC_P12 }}" | base64 --decode > "${{ env.INSTALLER_CERT_MAC_PATH }}"
127128 security create-keychain -p "${{ env.KEYCHAIN_PASSWORD }}" "${{ env.KEYCHAIN }}"
Original file line number Diff line number Diff line change 3232 DEFAULT_GO_MODULE_PATH : ./
3333 DEFAULT_GO_PACKAGES :
3434 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+ )
3640
3741tasks :
3842 # 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