From 295329e2832d9971e97c6c3e24190fc63a9678bc Mon Sep 17 00:00:00 2001 From: Ha Vu Date: Sat, 17 Jan 2026 12:16:22 +0700 Subject: [PATCH] chore: remove fork build workflow --- .github/workflows/build-fork.yml | 42 -------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/build-fork.yml diff --git a/.github/workflows/build-fork.yml b/.github/workflows/build-fork.yml deleted file mode 100644 index df7fd89f..00000000 --- a/.github/workflows/build-fork.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Build Fork - -on: - push: - branches: - - feat/bandwidth-limiting - workflow_dispatch: - -jobs: - docker-build: - name: Build & Push Docker Image - runs-on: ubuntu-latest - permissions: - packages: write - contents: read - steps: - - uses: actions/checkout@v4 - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Build and push - uses: docker/build-push-action@v6 - with: - context: . - platforms: linux/amd64 - push: true - tags: | - ghcr.io/${{ github.repository }}:latest - ghcr.io/${{ github.repository }}:${{ github.sha }} - cache-from: type=gha - cache-to: type=gha,mode=min