Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
datawhores committed Nov 15, 2023
1 parent 0e1aca6 commit b4b976e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release_bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,23 +180,23 @@ jobs:
# run: deactive
- name: create-dir
id: create-dir
run: poetry run pyinstaller D:\a\OF-Scraper\OF-Scraper\ofscraper\__main__.py --collect-submodules ofscraper --name "ofscraper_windows_${{inputs.files}}"
run: poetry run pyinstaller D:\a\OF-Scraper\OF-Scraper\ofscraper\__main__.py --collect-submodules ofscraper --name "ofscraper_windows_${{inputs.version}}"
continue-on-error: true
- name: active env for create-dir2
run: poetry env use .venv/Scripts/python3
- name: create-dir2
id: create-one-dir2
if: steps.create-dir.outcome != 'success'
run: poetry run pyinstaller .venv/Scripts/ofscraper --collect-submodules application --name "ofscraper_windows_${{inputs.files}}"
run: poetry run pyinstaller .venv/Scripts/ofscraper --collect-submodules application --name "ofscraper_windows_${{inputs.version}}"
- uses: vimtor/action-zip@v1
with:
files: "dist/ofscraper_windows_${{inputs.files}}"
dest: "dist/ofscraper_windows_${{inputs.files}}.zip"
files: "dist/ofscraper_windows_${{inputs.version}}"
dest: "dist/ofscraper_windows_${{inputs.version}}.zip"
- name: upload file
uses: actions/upload-artifact@v3
with:
name: ofscraper_windows_zip
path: "dist/ofscraper_windows_${{inputs.files}}.zip"
path: "dist/ofscraper_windows_${{inputs.version}}.zip"
mac:
needs: [create_version]
runs-on: macos-latest
Expand Down

0 comments on commit b4b976e

Please sign in to comment.