diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 31253a1..7db2a6a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: run: gf build -ew -v "${{ github.ref_name }}" - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 # 降级为 v3,兼容 Gitea with: name: uploads3-${{ github.ref_name }} path: | @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@v4 - name: Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 # 降级为 v3,与上传版本匹配 with: name: uploads3-${{ github.ref_name }} path: bin @@ -92,4 +92,4 @@ jobs: draft: false prerelease: false files: | - dist/* + dist/* \ No newline at end of file