ci(workflow): 将actions/upload-artifact和actions/download-artifact从v4降级到v3
Some checks failed
Build Android APK / 编译 libcore.aar (push) Failing after 8s
Build Android APK / 编译 Android APK (release) (push) Has been skipped
Build Multi-Platform / 编译 libcore (iOS/tvOS) (push) Failing after 6s
Build Windows / 编译 libcore (Windows) (20.15.1) (push) Successful in 20m0s
Build Windows / build (push) Failing after 7h1m17s
Build Android APK / 创建 GitHub Release (push) Has been cancelled
Build Multi-Platform / 编译 libcore (Android) (push) Has been cancelled
Build Multi-Platform / 编译 libcore (Windows) (push) Has been cancelled
Build Multi-Platform / 编译 libcore (macOS) (push) Has been cancelled
Build Multi-Platform / 编译 libcore (Linux) (push) Has been cancelled
Build Multi-Platform / 构建 Android APK (push) Has been cancelled
Build Multi-Platform / 构建 Windows (push) Has been cancelled
Build Multi-Platform / 构建 macOS (push) Has been cancelled
Build Multi-Platform / 构建 Linux (push) Has been cancelled
Build Multi-Platform / 创建 Release (push) Has been cancelled
Build Multi-Platform / 构建 iOS (push) Has been cancelled

This commit is contained in:
shanshanzhong 2025-11-06 00:05:46 -08:00
parent 251564a5de
commit dbf6175ad9

View File

@ -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/