Skip to content

Commit

Permalink
change deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsugu committed Aug 12, 2024
1 parent b304741 commit 1a8438e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ jobs:
# Create ZIP files
if [ -f ubuntu-latest/addframe-linux ] && [ -f ubuntu-latest/addframe.json ]; then
zip zipped/addframe-linux.zip ubuntu-latest/addframe-linux ubuntu-latest/addframe.json
zip -r zipped/addframe-linux.zip ubuntu-latest/addframe-linux ubuntu-latest/addframe.json
fi
if [ -f macos-latest/addframe-macos ] && [ -f macos-latest/addframe.json ]; then
zip zipped/addframe-macos.zip macos-latest/addframe-macos macos-latest/addframe.json
zip -r zipped/addframe-macos.zip macos-latest/addframe-macos macos-latest/addframe.json
fi
if [ -f windows-latest/addframe.exe ] && [ -f windows-latest/addframe.json ]; then
zip zipped/addframe-windows.zip windows-latest/addframe.exe windows-latest/addframe.json
zip -r zipped/addframe-windows.zip windows-latest/addframe.exe windows-latest/addframe.json
fi
shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
shell: bash
Expand Down

0 comments on commit 1a8438e

Please sign in to comment.