Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
datawhores committed Oct 11, 2023
2 parents 00a9923 + 809c9a8 commit d914d10
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commit_bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Install package
run: poetry install
- name: Install builder
run: poetry add pyinstaller
run: poetry add pyinstaller==5.13.0
# - name: temp deactive
# run: deactive
- name: create-one-file
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
- name: Install package
run: poetry install
- name: Install builder
run: pip install pyinstaller
run: pip install pyinstaller==5.13.0
- name: create-one-file
id: create-one-file
run: poetry run pyinstaller /Users/runner/work/OF-Scraper/OF-Scraper/ofscraper/__main__.py --collect-submodules ofscraper --onefile --name "ofscraper_macos_${{ steps.commit.outputs.short}}"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release_bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
python3.11 -m venv .venv
/root/.local/bin/poetry add lxml
/root/.local/bin/poetry install
/root/.local/bin/poetry add pyinstaller
/root/.local/bin/poetry add pyinstaller==5.13.0
echo "install run pyinstaller"
/root/.local/bin/poetry run pyinstaller .venv/bin/ofscraper --collect-submodules application --name "ofscraper_linux_${{inputs.version}}" --onefile
- name: upload one file
Expand All @@ -114,7 +114,7 @@ jobs:
apt-get install zip -y
python3.11 -m venv .venv
/root/.local/bin/poetry install
/root/.local/bin/poetry add pyinstaller
/root/.local/bin/poetry add pyinstaller==5.13.0
/root/.local/bin/poetry run pyinstaller .venv/bin/ofscraper --collect-submodules application --name "ofscraper_linux_${{inputs.version}}" --onefile
zip -r "dist/ofscraper_linux_${{inputs.version}}.zip" "dist/ofscraper_linux_${{inputs.version}}"
- name: upload zip
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
- name: Install package
run: poetry install
- name: install builder
run: poetry add pyinstaller
run: poetry add pyinstaller==5.13.0
- name: create-one-file
id: create-one-file
run: poetry run pyinstaller D:\a\OF-Scraper\OF-Scraper\ofscraper\__main__.py --collect-submodules ofscraper --onefile --name "ofscraper_windows_${{inputs.version}}"
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
- name: Install package
run: poetry install
- name: install builder
run: poetry add pyinstaller
run: poetry add pyinstaller==5.13.0
- name: create-one-file
id: create-one-file
run: poetry run pyinstaller /Users/runner/work/OF-Scraper/OF-Scraper/ofscraper/__main__.py --collect-submodules application --onefile --name "ofscraper_macos_${{inputs.version}}"
Expand Down
23 changes: 19 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d914d10

Please sign in to comment.