Skip to content

Commit

Permalink
Updated build.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
punesemu committed Jan 8, 2024
1 parent f64ba90 commit 795927b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,15 +293,15 @@ jobs:
- name: 'Create assets'
shell: bash
run: |
echo "create artifacts/puNES-${{ env.version }}-x86_64.AppImage"
echo "create puNES-${{ env.version }}-x86_64.AppImage"
mv artifacts/puNES-x86_64.AppImage/puNES-x86_64.AppImage artifacts/puNES-${{ env.version }}-x86_64.AppImage
for bit in 32 64 ; do
arch=$( [ "$bit" == "32" ] && echo "i686" || echo "x86_64" )
for i in d3d9 opengl ; do
folder=punes${bit}.wip.${i}
out="punes-${{ env.version }}-${arch}-win-${i}.zip"
mv artifacts/${folder}/punes.exe artifacts/${folder}/punes${bit}.exe
echo "create artifacts/${out}"
echo "create ${out}"
zip -9j artifacts/${out} artifacts/${folder}/*
done
done
Expand Down

0 comments on commit 795927b

Please sign in to comment.