diff --git a/.github/workflows/commit_bundler.yml b/.github/workflows/commit_bundler.yml index 3fc8ab2b5..f89a036a9 100644 --- a/.github/workflows/commit_bundler.yml +++ b/.github/workflows/commit_bundler.yml @@ -293,17 +293,11 @@ jobs: run: | source .venv/bin/activate pip install pyinstaller==6.4.0 - deactivate - - name: show ofscraper - run: | - source .venv/bin/activate - pip show -f ofscraper - pip uninstall ofscraper - deactivate + deactivate - name: test ofscraper run: | export PATH=$PATH:/usr/local/bin - ofscraper -h + /Users/runner/work/OF-Scraper/OF-Scraper/.venv/bin/ofscraper -h - name: create-one-file id: create-one-file run: | @@ -311,7 +305,7 @@ jobs: rm -rf build source .venv/bin/activate export PATH=$PATH:/usr/local/bin - pyinstaller /Users/runner/work/OF-Scraper/OF-Scraper/ofscraper/__main__.py --collect-submodules ofscraper --onefile --name "ofscraper_macos_${{ steps.commit.outputs.short}}" + pyinstaller /Users/runner/work/OF-Scraper/OF-Scraper/ofscraper/__main__.py --collect-submodules /Users/runner/work/OF-Scraper/OF-Scraper/.venv/bin/ofscraper --onefile --name "ofscraper_macos_${{ steps.commit.outputs.short}}" deactivate continue-on-error: true - name: create-one-file2