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