diff --git a/.github/workflows/publish.js.yml b/.github/workflows/publish.js.yml index 4dd045199..ed4f2e5b5 100644 --- a/.github/workflows/publish.js.yml +++ b/.github/workflows/publish.js.yml @@ -93,7 +93,11 @@ jobs: - name: Download all artifacts uses: actions/download-artifact@v4 with: - path: ./ + path: ${{ runner.temp }}/artifacts-temp + - name: Move artifacts to root for release + run: | + find "${{ runner.temp }}/artifacts-temp" -name "*.zip" -type f -exec mv {} . \; + rm -rf "${{ runner.temp }}/artifacts-temp" - run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}