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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,10 @@ jobs:
context: .
file: docker/Dockerfile.minimal
push: true
tags: ghcr.io/${{ github.repository }}:latest-minimal
# ghcr.io image names must be lowercase. github.repository preserves
# the org casing ("Beacon-Stack/pilot"), which GHCR rejects, so we
# spell the repo out explicitly instead of using the expression.
tags: ghcr.io/beacon-stack/pilot:latest-minimal
labels: ${{ steps.meta.outputs.labels }}
build-args: |
VERSION=${{ github.sha }}
Expand Down
Loading