We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6fc4e9 commit d1bf689Copy full SHA for d1bf689
.github/workflows/publish.js.yml
@@ -93,7 +93,11 @@ jobs:
93
- name: Download all artifacts
94
uses: actions/download-artifact@v4
95
with:
96
- path: ./
+ 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"
101
- run: npx semantic-release
102
env:
103
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments