From 1615c0115d4091dc970db0dde9d1ce240e7c98f1 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 20 Apr 2026 13:07:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9A=82=E6=97=B6=E7=A6=81=E7=94=A8=20a?= =?UTF-8?q?rtifact=20=E4=B8=8A=E4=BC=A0=20-=20Gitea=20SSL=20=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-docker-image.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 8568c7051..0321fa6cb 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -65,14 +65,17 @@ jobs: - name: Build Docker image run: | docker build -t next-terminal:${{ steps.version.outputs.VERSION }} . + echo "Docker image built successfully: next-terminal:${{ steps.version.outputs.VERSION }}" - name: Save Docker image run: | docker save next-terminal:${{ steps.version.outputs.VERSION}} | gzip > next-terminal-${{ steps.version.outputs.VERSION}}.tar.gz + ls -lh next-terminal-*.tar.gz - - name: Upload artifact - uses: actions/upload-artifact@v3 - with: - name: next-terminal-docker-${{ steps.version.outputs.VERSION }} - path: next-terminal-${{ steps.version.outputs.VERSION}}.tar.gz - retention-days: 7 + # Artifact upload disabled due to Gitea SSL configuration issue + # - name: Upload artifact + # uses: actions/upload-artifact@v3 + # with: + # name: next-terminal-docker-${{ steps.version.outputs.VERSION }} + # path: next-terminal-${{ steps.version.outputs.VERSION}}.tar.gz + # retention-days: 7