Skip to content

Commit

Permalink
ci: release fixes
Browse files Browse the repository at this point in the history
- 7zip seems to be preinstalled on windows runners
- don't use gnu-specific cp option
  • Loading branch information
kleinesfilmroellchen committed Oct 2, 2024
1 parent c8e4824 commit 7e33e34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ release-finalize version target:
./spcasm-{{version}}/spcasm.exe --version
./spcasm-{{version}}/brr.exe --version
Copy-Item -Recurse include -Destination 'spcasm-{{version}}'
cd spcasm-{{version}} && zip ../spcasm-{{version}}-{{target}}.zip '*.exe' 'include/*'
cd spcasm-{{version}} && 7z a -tzip ../spcasm-{{version}}-{{target}}.zip '*.exe' 'include/*'

# Specific finalization steps for Unix
[unix]
Expand All @@ -86,7 +86,7 @@ release-finalize version target:
@echo 'spcasm and brr version(s)'
'./spcasm-{{version}}/spcasm' --version
'./spcasm-{{version}}/brr' --version
cp -rT include 'spcasm-{{version}}/include'
cp -r include 'spcasm-{{version}}'
tar caz -f spcasm-{{version}}-{{target}}.tar.xz -C spcasm-{{version}} .


Expand Down

0 comments on commit 7e33e34

Please sign in to comment.