From 89530453161a73a515cfea145e16ab29bf775f3a Mon Sep 17 00:00:00 2001 From: SnapOtter Date: Fri, 24 Apr 2026 18:23:21 +0800 Subject: [PATCH] chore: disable Docker build test in CI temporarily Docker/GHCR push will be re-enabled after thorough local testing. --- .github/workflows/ci.yml | 45 +++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a954282d..ede7b263 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,27 +93,24 @@ jobs: - run: pnpm install --frozen-lockfile - run: pnpm build - docker: - name: Docker Build Test - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: docker/setup-buildx-action@v3 - - - name: Log in to GHCR (for registry cache) - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GHCR_TOKEN }} - - - uses: docker/build-push-action@v6 - with: - context: . - file: docker/Dockerfile - push: false - tags: snapotter:ci - build-args: SKIP_MODEL_DOWNLOADS=true - cache-from: type=registry,ref=ghcr.io/snapotter-hq/snapotter:cache-linux-amd64 - cache-to: type=registry,ref=ghcr.io/snapotter-hq/snapotter:cache-ci,mode=max + # docker: + # name: Docker Build Test + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - uses: docker/setup-buildx-action@v3 + # - name: Log in to GHCR (for registry cache) + # uses: docker/login-action@v3 + # with: + # registry: ghcr.io + # username: ${{ github.repository_owner }} + # password: ${{ secrets.GHCR_TOKEN }} + # - uses: docker/build-push-action@v6 + # with: + # context: . + # file: docker/Dockerfile + # push: false + # tags: snapotter:ci + # build-args: SKIP_MODEL_DOWNLOADS=true + # cache-from: type=registry,ref=ghcr.io/snapotter-hq/snapotter:cache-linux-amd64 + # cache-to: type=registry,ref=ghcr.io/snapotter-hq/snapotter:cache-ci,mode=max