From dbf6175ad9b54f755f5c0a606ce47c24fc4cef77 Mon Sep 17 00:00:00 2001 From: shanshanzhong Date: Thu, 6 Nov 2025 00:05:46 -0800 Subject: [PATCH] =?UTF-8?q?ci(workflow):=20=E5=B0=86actions/upload-artifac?= =?UTF-8?q?t=E5=92=8Cactions/download-artifact=E4=BB=8Ev4=E9=99=8D?= =?UTF-8?q?=E7=BA=A7=E5=88=B0v3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-windows.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 08b61a0..19be260 100755 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -61,7 +61,7 @@ jobs: fi - name: 📤 上传 Windows libcore - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: libcore-windows path: | @@ -70,7 +70,7 @@ jobs: libcore/bin/webui/** retention-days: 7 - # 构建 Windows 应用1 + # 构建 Windows 应用 build: runs-on: windows-latest needs: build-libcore @@ -111,7 +111,7 @@ jobs: fetch-depth: 0 - name: 📥 下载 libcore - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: libcore-windows path: . @@ -173,13 +173,13 @@ jobs: run: flutter build windows --release - name: Upload Debug build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: windows-debug-build path: build/windows/runner/Debug/ - name: Upload Release build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: windows-release-build path: build/windows/runner/Release/ \ No newline at end of file