Skip to content

Commit

Permalink
Merge branch 'CheckAPI' into 'main'
Browse files Browse the repository at this point in the history
Check api

See merge request kennbroorg/trackenn-back!16
  • Loading branch information
KennBro committed May 8, 2024
2 parents 7967bb6 + da9d9d6 commit 6b7d79b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/package-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
run: pip install cx_Freeze

- name: Freeze Python Script
run: cxfreeze -c app.py --target-dir trackenn --target-name trackenn
run: python setup.py build
# run: cxfreeze -c app.py --target-dir trackenn --target-name trackenn

- name: Copy directories and files
run: |
Expand Down Expand Up @@ -58,7 +59,8 @@ jobs:
run: pip install cx_Freeze

- name: Freeze Python Script
run: cxfreeze -c app.py --target-dir trackenn --target-name trackenn
run: python setup.py build
# run: cxfreeze -c app.py --target-dir trackenn --target-name trackenn

- name: Copy directories and files
run: |
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

# Dependencies are automatically detected, but it might need
# fine tuning.
build_options = {'packages': ['core'], 'excludes': []}
output_directory = "trackenn"

build_options = {'packages': ['core'], 'excludes': [], 'build_exe': output_directory}

base = 'console'

Expand Down

0 comments on commit 6b7d79b

Please sign in to comment.