diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 20bf2f5..29492c6 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -24,7 +24,8 @@ jobs: uses: docker/build-push-action@v3 with: push: true - file: "{context}/Dockerfile.cpu" + context: ./ + file: "./Dockerfile.cpu" tags: | anodev/carvekit:latest-cpu anodev/carvekit:${{ env.RELEASE_VERSION }}-cpu @@ -32,7 +33,8 @@ jobs: uses: docker/build-push-action@v3 with: push: true - file: "{context}/Dockerfile.cuda" + context: ./ + file: "./Dockerfile.cuda" tags: | anodev/carvekit:latest-cuda anodev/carvekit:${{ env.RELEASE_VERSION }}-cuda \ No newline at end of file diff --git a/carvekit/__init__.py b/carvekit/__init__.py index 2c39725..44b29f8 100644 --- a/carvekit/__init__.py +++ b/carvekit/__init__.py @@ -1 +1 @@ -version = "4.0.6" +version = "4.0.7"