Skip to content

Commit

Permalink
Build XDGB as a docker image and push to GHCR (#1419)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkysel authored Dec 16, 2024
1 parent 97eca90 commit a545c0f
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/push-xbg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Push XDBG Image

on:
push:
branches:
- main

workflow_dispatch:

jobs:
push_to_registry:
name: Push Docker Image to GitHub Packages
runs-on: warp-ubuntu-latest-x64-16x
permissions:
contents: read
packages: write
outputs:
digest: ${{ steps.push.outputs.digest }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Log in to the container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/xdbg
tags: |
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@v6
id: push
with:
context: .
file: ./dev/xdbg/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
10 changes: 10 additions & 0 deletions dev/xdbg/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM rust:1-bullseye as builder
WORKDIR /code
COPY . .
COPY .git /.git
RUN cargo build --release --package xdbg

FROM debian:bullseye-slim
COPY --from=builder /code/target/release/xdbg /usr/local/bin/xdbg
ENV RUST_LOG=info
ENTRYPOINT ["xdbg"]

0 comments on commit a545c0f

Please sign in to comment.