Skip to content

Commit

Permalink
publisher: move release artifacts to the same directory
Browse files Browse the repository at this point in the history
With release artifacts now separated, action-download-artifact downloads
and unpack them in separated directories.

This commit manually unifies the separated directories.

Fixes 654b353
  • Loading branch information
alaviss committed Dec 23, 2023
1 parent 654b353 commit da30103
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/publisher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit da30103

Please sign in to comment.