Skip to content

Commit

Permalink
[merge] Merge pull request #544 from inexorgame/hanni/fix_automatic_r…
Browse files Browse the repository at this point in the history
…eleases

[workflows] Fix automatic release generation
  • Loading branch information
IAmNotHanni authored Jun 13, 2023
2 parents 6af0d8a + 697b7c4 commit ba9166a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
shell: bash
run: |
mkdir archives
unzip "${process.env.GITHUB_WORKSPACE}/*.zip" -d archives
cd "${process.env.GITHUB_WORKSPACE}"
unzip '*.zip' -d archives
cd archives
for f in *; do mv "$f" "${f/release_/}";done
Expand Down

0 comments on commit ba9166a

Please sign in to comment.