Skip to content

Commit

Permalink
call pyinstaller directly in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisvang committed Nov 29, 2023
1 parent 5118617 commit 462fdb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-update-cycle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: initialize tufup repository
run: python repo_init.py
- name: create my_app v1.0 bundle using pyinstaller
run: cmd.exe /c ./create_pyinstaller_bundle_win.bat
run: pyinstaller "main.spec" --clean -y --distpath "${{ runner.temp }}/dist" --workpath "${{ runner.temp }}/build"
- name: add my_app v1.0 to tufup repository
run: python repo_add_bundle.py
- name: mock install my_app v1.0
Expand All @@ -78,7 +78,7 @@ jobs:
settings_path.write_text(settings_text)
# - run: cat ./src/myapp/settings.py
- name: create my_app v2.0 bundle using pyinstaller
run: cmd.exe /c ./create_pyinstaller_bundle_win.bat
run: pyinstaller "main.spec" --clean -y --distpath "${{ runner.temp }}/dist" --workpath "${{ runner.temp }}/build"
- name: add my_app v2.0 to tufup repository
run: python repo_add_bundle.py
- name: run update server and update my_app from v1 to v2
Expand Down

0 comments on commit 462fdb9

Please sign in to comment.