Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: uv build --wheel
- name: Build docker images for publishing
run: |
just build fakesentry gcs-emulator
docker comppose build fakesentry gcs-emulator
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/comppose/compose

Also, the exact just build recipe is docker compose --progress plain build {{args}}. I'm not sure what the default is, but we probably want plain here?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the default is auto, which detects whether stdout is a terminal and then picks either tty or plain. In GitHub Actions, standard out is not a terminal, so it will pick plain.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(I just reverted my ill-advised change to this line from #203. It was fine before, so it should be fine now.)

GAR_REPO="us-docker.pkg.dev/${{ secrets.GCP_PROJECT_ID }}/cavendish-prod"
FAKESENTRY_TAG="$GAR_REPO/fakesentry:${{ env.RELEASE_TAG }}"
docker tag local/obs-common-fakesentry:latest "$FAKESENTRY_TAG"
Expand Down