Skip to content

Commit d1bf689

Browse files
chore(ci): Fix collection of release artifacts (#1094)
* ci: Fix collection of artifacts * quote
1 parent b6fc4e9 commit d1bf689

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/publish.js.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,11 @@ jobs:
9393
- name: Download all artifacts
9494
uses: actions/download-artifact@v4
9595
with:
96-
path: ./
96+
path: ${{ runner.temp }}/artifacts-temp
97+
- name: Move artifacts to root for release
98+
run: |
99+
find "${{ runner.temp }}/artifacts-temp" -name "*.zip" -type f -exec mv {} . \;
100+
rm -rf "${{ runner.temp }}/artifacts-temp"
97101
- run: npx semantic-release
98102
env:
99103
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)