-
Notifications
You must be signed in to change notification settings - Fork 111
feat(ci): publish omnigraph-server container image to GHCR on release #340
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
Merged
+112
−1
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,103 @@ | ||
| name: Publish container image | ||
|
aaltshuler marked this conversation as resolved.
|
||
|
|
||
| # Build and publish the omnigraph-server container image to GHCR so | ||
| # downstream deployments can pull it without building from source. | ||
| # | ||
| # Kept separate from release.yml on purpose: an image-publish failure must | ||
| # not block the binary release / Homebrew chain, and a manual backfill of an | ||
| # old tag must not re-run the four-platform release matrix. | ||
| # | ||
| # Triggers (same dual pattern as release.yml): | ||
| # - push of a v* tag (normal release) | ||
| # - workflow_dispatch with an explicit `tag` (publish an image for a past | ||
| # tag; resolves the same `${{ inputs.tag || github.ref_name }}`) | ||
| # | ||
| # The binaries are compiled inside a rust:1-bookworm container, NOT on the | ||
| # runner host: the Dockerfile's runtime base is debian bookworm-slim | ||
| # (glibc 2.36), and binaries built on ubuntu-latest (glibc 2.39) do not run | ||
| # there. Builder and runtime must share the same distro release. | ||
|
|
||
| on: | ||
| push: | ||
| tags: | ||
| - "v*" | ||
| workflow_dispatch: | ||
| inputs: | ||
| tag: | ||
| description: "Tag to publish an image for (e.g. v0.8.1). Required for manual dispatches." | ||
| required: true | ||
| type: string | ||
|
|
||
| jobs: | ||
| publish_image: | ||
| name: Build and push image | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| packages: write | ||
| env: | ||
| RELEASE_TAG: ${{ inputs.tag || github.ref_name }} | ||
| steps: | ||
| # The dispatch `tag` input is free-form; without this guard a dispatcher | ||
| # could pass a branch name or SHA and publish non-release code under a | ||
| # release-looking image tag. Require an existing v* tag ref. | ||
| - name: Validate dispatch tag | ||
| if: github.event_name == 'workflow_dispatch' | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| run: | | ||
| [[ "${RELEASE_TAG}" == v* ]] \ | ||
| || { echo "tag must be a v* release tag, got: ${RELEASE_TAG}" >&2; exit 1; } | ||
| gh api "repos/${GITHUB_REPOSITORY}/git/ref/tags/${RELEASE_TAG}" >/dev/null \ | ||
| || { echo "no such tag: ${RELEASE_TAG}" >&2; exit 1; } | ||
|
|
||
| - name: Checkout source | ||
| uses: actions/checkout@v5.0.1 | ||
| with: | ||
| # Fully qualified so a branch of the same name can never shadow the tag. | ||
| ref: refs/tags/${{ env.RELEASE_TAG }} | ||
|
|
||
| - name: Build release binaries (bookworm builder) | ||
| run: | | ||
| docker run --rm -v "$PWD:/work" -w /work rust:1-bookworm bash -euxc ' | ||
| apt-get update | ||
| apt-get install -y --no-install-recommends protobuf-compiler libprotobuf-dev | ||
| # --features omnigraph-server/aws: include the AWS Secrets Manager | ||
| # bearer-token source so one public image serves both token modes. | ||
| cargo build --release --locked -p omnigraph-cli -p omnigraph-server --features omnigraph-server/aws | ||
| ' | ||
|
|
||
| - name: Log in to GHCR | ||
| run: | | ||
| echo "${{ secrets.GITHUB_TOKEN }}" \ | ||
| | docker login ghcr.io --username "${{ github.actor }}" --password-stdin | ||
|
|
||
| - name: Build and push image | ||
| run: | | ||
| owner="${GITHUB_REPOSITORY_OWNER,,}" | ||
| image="ghcr.io/${owner}/omnigraph-server" | ||
| docker build -t "${image}:${RELEASE_TAG}" . | ||
| docker push "${image}:${RELEASE_TAG}" | ||
|
|
||
| # Move `latest` only on real tag pushes — a dispatch backfill of an | ||
| # old tag must not repoint `latest` at it. | ||
| if [[ "${GITHUB_EVENT_NAME}" == "push" ]]; then | ||
| docker tag "${image}:${RELEASE_TAG}" "${image}:latest" | ||
| docker push "${image}:latest" | ||
| fi | ||
|
|
||
| - name: Report pinned digest | ||
| run: | | ||
| owner="${GITHUB_REPOSITORY_OWNER,,}" | ||
| image="ghcr.io/${owner}/omnigraph-server" | ||
| digest=$(docker inspect --format='{{index .RepoDigests 0}}' "${image}:${RELEASE_TAG}") | ||
| { | ||
| echo "## Container image published" | ||
| echo | ||
| echo '```' | ||
| echo "${image}:${RELEASE_TAG}" | ||
| echo "${digest}" | ||
| echo '```' | ||
| echo | ||
| echo "Pin deployments to the digest form." | ||
| } >> "$GITHUB_STEP_SUMMARY" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.