File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -171,19 +171,16 @@ jobs:
171
171
--release \
172
172
--target ${{ needs.set-config.outputs.TARGET }}
173
173
174
- - id : " auth"
175
- uses : google-github-actions/auth@v1
176
- with :
177
- workload_identity_provider : ${{ secrets.GOOGLE_WORKLOAD_IDENTITY_PROVIDER }}
178
- service_account : ${{ secrets.GOOGLE_SERVICE_ACCOUNT }}
179
-
180
174
- name : Get sha
181
175
id : get-sha
182
176
shell : bash
183
177
run : |
184
178
full_commit="${{ inputs.RELEASE_COMMIT || ((github.event_name == 'pull_request' && github.event.pull_request.head.sha) || github.sha) }}"
185
179
echo "sha=$(echo $full_commit | cut -c1-7)" >> "$GITHUB_OUTPUT"
186
180
181
+ # IMPORTANT: we must NOT use google-github-actions/auth@v1 here, because it's already done by our setup-rust
182
+ # action. Authenticating twice will cause the second authentication's clean-up to fail.
183
+
187
184
- name : " Upload rerun-cli (commit)"
188
185
uses : google-github-actions/upload-cloud-storage@v1
189
186
with :
You can’t perform that action at this time.
0 commit comments