From b6e2d61a18a8d85f4e7f56bc56cdc44d94ada062 Mon Sep 17 00:00:00 2001 From: rinseaid Date: Wed, 13 May 2026 22:40:22 -0400 Subject: [PATCH] Add workflow to build patched image to ghcr.io/rinseaid/newt:patched --- .github/workflows/build-patched.yml | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/build-patched.yml diff --git a/.github/workflows/build-patched.yml b/.github/workflows/build-patched.yml new file mode 100644 index 0000000..bd6d330 --- /dev/null +++ b/.github/workflows/build-patched.yml @@ -0,0 +1,34 @@ +name: Build patched image + +on: + push: + branches: [fix/x-forwarded-proto-tls] + workflow_dispatch: + +permissions: + contents: read + packages: write + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: docker/setup-qemu-action@v3 + + - uses: docker/setup-buildx-action@v3 + + - uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - uses: docker/build-push-action@v6 + with: + context: . + push: true + platforms: linux/amd64,linux/arm64 + build-args: VERSION=patched + tags: ghcr.io/rinseaid/newt:patched