From 6667a5512e07ad85fc0dfcaa499998cbc2939223 Mon Sep 17 00:00:00 2001 From: William Yue Date: Mon, 5 Jan 2026 16:12:46 -0800 Subject: [PATCH 1/3] fix --- .github/workflows/build-docker-images.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docker-images.yml b/.github/workflows/build-docker-images.yml index 52b40de..74306c0 100644 --- a/.github/workflows/build-docker-images.yml +++ b/.github/workflows/build-docker-images.yml @@ -52,5 +52,5 @@ jobs: context: . file: ./Dockerfile push: true - tags: TensorAuto/OpenTau:latest + tags: tensorauto/opentau:latest build-args: PYTHON_VERSION=${{ env.PYTHON_VERSION }} From 3991f619c1f043702a94975ba462a95e5be2aa80 Mon Sep 17 00:00:00 2001 From: William Yue Date: Mon, 5 Jan 2026 16:28:46 -0800 Subject: [PATCH 2/3] save space --- .github/workflows/build-docker-images.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build-docker-images.yml b/.github/workflows/build-docker-images.yml index 74306c0..cf2b051 100644 --- a/.github/workflows/build-docker-images.yml +++ b/.github/workflows/build-docker-images.yml @@ -30,6 +30,13 @@ jobs: name: Build and Push runs-on: ubuntu-latest steps: + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space-action@v1.3.1 + with: + # this might remove tools that are actually needed, + # if set to "true" but frees about 6GB + tool-cache: false + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 with: From ffd94e7c94ec8880eb29b489002d0025e1bbb017 Mon Sep 17 00:00:00 2001 From: William Yue Date: Mon, 5 Jan 2026 16:34:49 -0800 Subject: [PATCH 3/3] fix --- .github/workflows/build-docker-images.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build-docker-images.yml b/.github/workflows/build-docker-images.yml index cf2b051..c6fa280 100644 --- a/.github/workflows/build-docker-images.yml +++ b/.github/workflows/build-docker-images.yml @@ -31,11 +31,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Free Disk Space (Ubuntu) - uses: jlumbroso/free-disk-space-action@v1.3.1 - with: - # this might remove tools that are actually needed, - # if set to "true" but frees about 6GB - tool-cache: false + uses: jlumbroso/free-disk-space@main - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3