Skip to content

Commit

Permalink
ci: explicitly build s3proxy container image tag before referencing (#…
Browse files Browse the repository at this point in the history
…2806)

Otherwise, the file might not exist.
  • Loading branch information
malt3 authored Jan 8, 2024
1 parent 7d778d1 commit d3b9513
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/e2e_s3proxy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ runs:
shell: bash
run: |
bazel run //bazel/release:s3proxy_push
echo s3proxyImage=$(cat ./bazel-bin/bazel/release/s3proxy_tag.txt) | tee -a "$GITHUB_OUTPUT"
bazel build //bazel/release:s3proxy_tag.txt
tagpath=$(bazel cquery --output=files //bazel/release:s3proxy_tag.txt)
echo s3proxyImage=$(cat "${tagpath}") | tee -a "$GITHUB_OUTPUT"
- name: Setup s3proxy
shell: bash
Expand Down

0 comments on commit d3b9513

Please sign in to comment.