From f76f5e6d1c58815ea6586bca8475dc7067c3a6ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=B3=E3=83=9E=E3=83=AA=E3=83=B3=E8=A6=AA=E8=A1=9B?= =?UTF-8?q?=E9=9A=8A?= Date: Tue, 1 Oct 2024 01:45:16 +0900 Subject: [PATCH] Delete .github/workflows/build.yml --- .github/workflows/build.yml | 40 ------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 1039c34..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Push to github container register - -on: - release: - types: [created] - workflow_dispatch: - -jobs: - push-docker: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - strategy: - matrix: - tag: [cpu, cuda] - platform: - - linux/amd64 - - linux/arm64 - steps: - - uses: actions/checkout@v4 - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - name: Build and push image - uses: docker/build-push-action@v6 - with: - context: . - push: true - tags: | - ghcr.io/${{ github.repository }}:${{ matrix.tag }} - file: docker/${{ matrix.tag }}.Dockerfile - platforms: ${{ matrix.platform }} \ No newline at end of file