Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a53bbe743e |
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user