Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
datawhores committed Nov 23, 2023
1 parent 19c6b39 commit 5df692d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/commit_bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ofscraper_version
path: /home/runner/work/OF-Scraper/OF-Scraper/ofscraper/__version__.py
path: /home/runner/work/OF-Scraper/ofscraper/__version__.py
# - name: list files 1
# run: ls /home/runner/work/
# - name: list files 2
# run: ls /home/runner/work/OF-Scraper/
# - name: list files 3
# run: ls /home/runner/work/OF-Scraper/OF-Scraper
# run: ls /home/runner/work/OF-Scraper
# - name: list files 4
# run: ls /home/runner/work/OF-Scraper/OF-Scraper/ofscraper
# run: ls /home/runner/work/OF-Scraper/ofscraper
linux:
needs: [create_version]
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
/root/.local/bin/poetry install
/root/.local/bin/poetry add pyinstaller==5.13.0
echo "install run pyinstaller"
/root/.local/bin/poetry run pyinstaller /home/runner/work/OF-Scraper/OF-Scraper/ofscraper/__main__.py --collect-submodules application --name "ofscraper_linux_${{ steps.commit.outputs.short}}" --onefile
/root/.local/bin/poetry run pyinstaller /home/runner/work/OF-Scraper/ofscraper/__main__.py --collect-submodules application --name "ofscraper_linux_${{ steps.commit.outputs.short}}" --onefile
- name: upload one file
uses: actions/upload-artifact@v3
Expand All @@ -91,7 +91,7 @@ jobs:
/root/.local/bin/poetry install --with build
/root/.local/bin/poetry install
/root/.local/bin/poetry add pyinstaller==5.13.0
/root/.local/bin/poetry run pyinstaller /home/runner/work/OF-Scraper/OF-Scraper/ofscraper/__main__.py --collect-submodules application --name "ofscraper_linux_${{ steps.commit.outputs.short}}" --onefile
/root/.local/bin/poetry run pyinstaller /home/runner/work/OF-Scraper/ofscraper/__main__.py --collect-submodules application --name "ofscraper_linux_${{ steps.commit.outputs.short}}" --onefile
zip -r "dist/ofscraper_linux_${{steps.commit.outputs.short}}.zip" "dist/ofscraper_linux_${{steps.commit.outputs.short}}"
- name: upload one file
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
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}}"
run: poetry run pyinstaller /Users/runner/work/OF-Scraper/ofscraper/__main__.py --collect-submodules ofscraper --onefile --name "ofscraper_macos_${{ steps.commit.outputs.short}}"
continue-on-error: true
- name: create-one-file2
id: create-one-file2
Expand All @@ -224,7 +224,7 @@ jobs:
path: "dist/ofscraper_macos_${{ steps.commit.outputs.short}}"
- name: create-dir
id: create-dir
run: poetry run pyinstaller /Users/runner/work/OF-Scraper/OF-Scraper/ofscraper/__main__.py --collect-submodules ofscraper --name "ofscraper_macos_${{ steps.commit.outputs.short}}"
run: poetry run pyinstaller /Users/runner/work/OF-Scraper/ofscraper/__main__.py --collect-submodules ofscraper --name "ofscraper_macos_${{ steps.commit.outputs.short}}"
continue-on-error: true
- name: create-dir2
id: create-dir2
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
- name: create release
uses: ncipollo/release-action@v1
with:
artifacts: "/home/runner/work/OF-Scraper/OF-Scraper/ofscraper_*"
artifacts: "/home/runner/work/OF-Scraper/ofscraper_*"
tag: ${{steps.commit.outputs.short}}
name: ${{env.name}}
body: ${{env.body}}
Expand Down

0 comments on commit 5df692d

Please sign in to comment.