diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 59cd13a..59aac48 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -23,11 +23,38 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: build and push rocm-aarch64-base + run: | + docker buildx build \ + --platform=linux/arm64 \ + -t docker.mistox.net/rocm-aarch64-base:latest \ + -f rocm-base-aarch64-dockerfile \ + --push \ + . + - name: build and push comfyui-rocm run: | docker buildx build \ --platform=linux/arm64 \ - -t mistox/comfyui-rocm-ampere:latest \ + -t docker.mistox.net/comfyui-rocm-ampere:latest \ -f comfyui-rocm-dockerfile \ --push \ + . + + - name: build and push comfyui-cuda + run: | + docker buildx build \ + --platform=linux/arm64 \ + -t docker.mistox.net/comfyui-cuda-ampere:latest \ + -f comfyui-cuda-dockerfile \ + --push \ + . + + - name: build and push uvicorn + run: | + docker buildx build \ + --platform=linux/arm64 \ + -t docker.mistox.net/uvicorn-ampere:latest \ + -f uvicorn-dockerfile \ + --push \ . \ No newline at end of file