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 ad6f51c commit ff89e27Copy full SHA for ff89e27
.github/workflows/cli_release.yaml
@@ -135,6 +135,9 @@ jobs:
135
uses: ./.github/actions/gcloud_creds
136
with:
137
SERVICE_ACCOUNT_KEY: ${{ secrets.GH_RELEASE_SA_PEM_B64 }}
138
+ - name: Add pwd to git safe dir
139
+ run: |
140
+ git config --global --add safe.directory `pwd`
141
- name: Upload signed CLI
142
env:
143
REF: ${{ github.event.ref }}
ci/cli_upload_signed.sh
@@ -18,11 +18,11 @@
18
19
repo_path=$(bazel info workspace)
20
21
+set -ex
22
+
23
# shellcheck source=ci/artifact_utils.sh
24
. "${repo_path}/ci/artifact_utils.sh"
25
-set -ex
-
26
printenv
27
28
release_tag=${TAG_NAME##*/v}
0 commit comments