feat(ds-flow): 前端设计系统治理重构(Flutter 五端 + Web 两端) #2

Merged
wangjia merged 117 commits from worktree-macos-killswitch into main 2026-07-08 00:47:03 +00:00
Showing only changes of commit a53bbe743e - Show all commits
+10 -8
View File
@@ -83,17 +83,19 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Download android artifact # 一次性下所有 artifact(不带 name),避免同 job 内两次复用 download-artifact
# action → act 对其只读缓存 git 仓库做二次操作时 EACCES(pack idx 444)。
- name: Download all artifacts
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
with: with:
name: android path: dist-raw/
path: dist/
- name: Download windows artifact - name: Flatten artifacts into dist/
uses: actions/download-artifact@v3 shell: bash
with: run: |
name: windows mkdir -p dist
path: dist/ find dist-raw -type f -exec cp {} dist/ \;
echo "dist/ 内容:"; ls -la dist/
- name: Release → Forgejo - name: Release → Forgejo
env: env: