Skip to content

Commit

Permalink
remove suffix from executable call in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisvang committed Nov 29, 2023
1 parent f39bb2b commit 5b41cc5
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 @@ -83,12 +83,12 @@ jobs:
run: pyinstaller "main.spec" --clean -y --distpath "temp_my_app/dist" --workpath "temp_my_app/build"
- name: add my_app v2.0 to tufup repository
run: python repo_add_bundle.py
- run: dir $Env:MYAPP_INSTALL_DIR # TEMP
- run: Get-ChildItem -Force -LiteralPath $Env:MYAPP_INSTALL_DIR # TEMP
- name: run update server and update my_app from v1 to v2
run: |
python -m http.server -d ./temp_my_app/repository &
sleep 5
Invoke-Expression "$Env:MYAPP_INSTALL_DIR/main.exe skip"
Invoke-Expression "$Env:MYAPP_INSTALL_DIR/main skip"
- name: proof of the pudding (i.e. verify that install dir contains my_app v2.0)
run: |
python -m http.server -d ./temp_my_app/repository &
Expand Down

0 comments on commit 5b41cc5

Please sign in to comment.