Skip to content

Commit

Permalink
ci: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Dec 6, 2024
1 parent 93af083 commit 1fbf81c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install -e .
pip install .
- name: Build macOS app
if: runner.os == 'macOS'
working-directory: ./build-recipes
Expand Down
6 changes: 3 additions & 3 deletions build-recipes/macos_build_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
# Notes:
# - AppVersion is optional (used for name of DMG container)
# - This script must be called from the root directory of the repository
# - The file ./travis/AppNameApp.py [sic] must be present (relative
# - The file ./AppNameAppLauncher.py [sic] must be present (relative
# to root of the repository)

set -x
set -e

if [ -z $1 ]; then
Expand All @@ -36,7 +36,7 @@ rm -rf ./dist

pip install -r macos_build_requirements.txt

pyinstaller -y --log-level=WARN ${SPEC}
pyinstaller -y --log-level=INFO ${SPEC}

# Test the binary by executing it with --version argument
echo ""
Expand Down

0 comments on commit 1fbf81c

Please sign in to comment.