From 39201f61d51ed8abaa651fd812764e53670926db Mon Sep 17 00:00:00 2001 From: ponzischeme89 Date: Sat, 17 Jan 2026 22:30:35 +1300 Subject: [PATCH] Add GHCR Docker build pipeline --- github/workflows/docker.yml | 43 +++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 github/workflows/docker.yml diff --git a/github/workflows/docker.yml b/github/workflows/docker.yml new file mode 100644 index 0000000..1b883b4 --- /dev/null +++ b/github/workflows/docker.yml @@ -0,0 +1,43 @@ +name: Build & Publish Sublogue Docker Image + +on: + push: + branches: [ "master" ] + tags: [ "v*" ] + +permissions: + contents: read + packages: write + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to GHCR + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Docker Metadata + id: meta + uses: docker/metadata-action@v5 + with: + images: ghcr.io/${{ github.repository }} + + - name: Build and Push + uses: docker/build-push-action@v5 + with: + context: . + push: true + platforms: linux/amd64,linux/arm64 + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}