Skip to content

Commit

Permalink
Fix macOS zip command
Browse files Browse the repository at this point in the history
  • Loading branch information
RainbowUnicorn7297 committed Aug 16, 2023
1 parent f255b84 commit 8c63c82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
cd standalone
../env/bin/pyinstaller gui_macos.spec
cd dist
zip -r9 mltd-relive-${{ github.ref_name }}-macos mltd-relive-standalone.app
zip -r9 mltd-relive-${{ github.ref_name }}-macos.zip mltd-relive-standalone.app
out-name: macos
out-path: standalone/dist/mltd-relive-${{ github.ref_name }}-macos.zip
steps:
Expand Down
2 changes: 1 addition & 1 deletion standalone/mltd/servers/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import logging
from datetime import timedelta, timezone

_version = '0.0.0'
_version = '0.0.3'
# 'zh' for Traditional Chinese, 'ko' for Korean
_language = 'zh'
_log_level = str(logging.INFO)
Expand Down

0 comments on commit 8c63c82

Please sign in to comment.