fix: 降级 upload-artifact 到 v3 - 兼容 Gitea Actions

This commit is contained in:
2026-04-20 12:42:06 +08:00
parent 87e75262dd
commit 9a587d61f7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ jobs:
tar zcvf next-terminal-${{ steps.version.outputs.VERSION }}-linux-amd64.tar.gz next-terminal/ tar zcvf next-terminal-${{ steps.version.outputs.VERSION }}-linux-amd64.tar.gz next-terminal/
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: next-terminal-${{ steps.version.outputs.VERSION }}-linux-amd64 name: next-terminal-${{ steps.version.outputs.VERSION }}-linux-amd64
path: next-terminal-${{ steps.version.outputs.VERSION }}-linux-amd64.tar.gz path: next-terminal-${{ steps.version.outputs.VERSION }}-linux-amd64.tar.gz
+1 -1
View File
@@ -71,7 +71,7 @@ jobs:
docker save next-terminal:${{ steps.version.outputs.VERSION}} | gzip > next-terminal-${{ steps.version.outputs.VERSION}}.tar.gz docker save next-terminal:${{ steps.version.outputs.VERSION}} | gzip > next-terminal-${{ steps.version.outputs.VERSION}}.tar.gz
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: next-terminal-docker-${{ steps.version.outputs.VERSION }} name: next-terminal-docker-${{ steps.version.outputs.VERSION }}
path: next-terminal-${{ steps.version.outputs.VERSION}}.tar.gz path: next-terminal-${{ steps.version.outputs.VERSION}}.tar.gz