fix: 暂时禁用 artifact 上传 - Gitea SSL 配置问题

This commit is contained in:
2026-04-20 13:07:23 +08:00
parent 9a587d61f7
commit 1615c0115d
+9 -6
View File
@@ -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