From 677fa33a65fdc9648b8f209d1444b33b5ec144df Mon Sep 17 00:00:00 2001 From: Mykola Mokhnach Date: Thu, 18 Dec 2025 21:50:34 +0100 Subject: [PATCH 1/2] ci: Fix collection of artifacts --- .github/workflows/publish.js.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.js.yml b/.github/workflows/publish.js.yml index 4dd045199..b17eaaeb2 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 }} From 4afe0dab60d398126c9bd9311ee8d3ddc6f1c60f Mon Sep 17 00:00:00 2001 From: Mykola Mokhnach Date: Thu, 18 Dec 2025 21:55:35 +0100 Subject: [PATCH 2/2] quote --- .github/workflows/publish.js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.js.yml b/.github/workflows/publish.js.yml index b17eaaeb2..ed4f2e5b5 100644 --- a/.github/workflows/publish.js.yml +++ b/.github/workflows/publish.js.yml @@ -96,8 +96,8 @@ jobs: 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 + 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 }}