From da3010328c4b2e730a50a95f5dba3aaa9c2e33df Mon Sep 17 00:00:00 2001 From: Leorize Date: Fri, 22 Dec 2023 23:31:37 -0600 Subject: [PATCH] publisher: move release artifacts to the same directory With release artifacts now separated, action-download-artifact downloads and unpack them in separated directories. This commit manually unifies the separated directories. Fixes 654b35351dcdf77824f63b78e61f29eec145ec76 --- .github/workflows/publisher.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/publisher.yml b/.github/workflows/publisher.yml index 286605d15b7..694f51c37ae 100644 --- a/.github/workflows/publisher.yml +++ b/.github/workflows/publisher.yml @@ -79,6 +79,11 @@ jobs: - id: release-files name: Create release manifest run: | + # Move the release binaries to the current folder + for d in "release binaries "*; do + mv -v "$d"/* . + done + # Github Artifacts strip executable permissions so it has to be set again chmod 755 release_manifest # Create a new release manifest