diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ec1bf23..3b3f5d1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -130,3 +130,37 @@ jobs: with: command: upload args: --non-interactive --skip-existing wheels-*/* + + push-docker: + runs-on: ubuntu-latest + if: "startsWith(github.ref, 'refs/tags/')" + 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 }} 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