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
7 changes: 6 additions & 1 deletion .github/workflows/publish-images.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: publish-images

# Publishes every scope's worker image to ECR Public on each semver tag, then
# registers each as an oci_image platform artifact (visible-to organization=*).
# registers each as an oci_image platform artifact (visible-to organization=*)
# carrying both the digest and the release tag, so packages can resolve it by
# tag (`lookup = true` + meta.tag) instead of copying a digest around.
# Same mold as scopes-lambda (publish-image.yml), fanned out to the 3 images:
#
# scopes/containers <- k8s/ (base; FROM worker-bridge + tooling)
Expand Down Expand Up @@ -71,6 +73,7 @@ jobs:
--registry public.ecr.aws \
--repository nullplatform/scopes/containers \
--digest "${{ needs.containers.outputs.image_digest }}" \
--tag "${{ inputs.existing_tag || github.ref_name }}" \
--visible-to "organization=*"

# ── scheduled-task (standalone) ────────────────────────────────────────────
Expand Down Expand Up @@ -104,6 +107,7 @@ jobs:
--registry public.ecr.aws \
--repository nullplatform/scopes/scheduled-task \
--digest "${{ needs.scheduled-task.outputs.image_digest }}" \
--tag "${{ inputs.existing_tag || github.ref_name }}" \
--visible-to "organization=*"

# ── containers-datadog (overlay) ───────────────────────────────────────────
Expand Down Expand Up @@ -139,6 +143,7 @@ jobs:
--registry public.ecr.aws \
--repository nullplatform/scopes/containers-datadog \
--digest "${{ needs.containers-datadog.outputs.image_digest }}" \
--tag "${{ inputs.existing_tag || github.ref_name }}" \
--visible-to "organization=*"

# ── GitHub release with artifact metadata ──────────────────────────────────
Expand Down
Loading