-
Notifications
You must be signed in to change notification settings - Fork 2
ci: push pr image #175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: push pr image #175
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -160,7 +160,9 @@ jobs: | |
| files: | | ||
| ./docker-bake.hcl | ||
| cwd://${{ steps.meta-kubimo.outputs.bake-file }} | ||
| push: ${{ github.event_name != 'pull_request' }} | ||
| # TODO: revert back | ||
| # push: ${{ github.event_name != 'pull_request' }} | ||
| push: true | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Setting Useful? React with 👍 / 👎. |
||
|
|
||
| npm: | ||
| name: Build and publish npm package | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| ARG KUBIMO_MARIMO_IMAGE=ghcr.io/aqora-io/kubimo-marimo:0.1.9 | ||
| ARG KUBIMO_MARIMO_IMAGE=ghcr.io/aqora-io/kubimo-marimo:pr-6 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Base image pinned to a PR tag — must be reverted before release.
🤖 Prompt for AI Agents |
||
|
|
||
| FROM ${KUBIMO_MARIMO_IMAGE} AS build | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Temporary unconditional push — ensure this gets reverted.
The TODO acknowledges this, but pushing Docker images from every PR (including from forks) is a risk if left in place: it pollutes the registry and could allow untrusted code to be published as an image. Consider adding a more targeted condition (e.g., only for PRs from the same repo, or specific branches) rather than a blanket
push: true, or at minimum track the revert with a follow-up issue.🤖 Prompt for AI Agents