Skip to content

Commit

Permalink
Refactor script name and update dependencies for video-to-text applic…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
Utesgui committed Jul 20, 2024
1 parent 59ea8ee commit 307412f
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/pyinstall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,24 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Package Application
uses: JackMcKew/pyinstaller-action-windows@main
- name: Set up Python
uses: actions/setup-python@v2
with:
path: .
python-version: '3.x'

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install -r requirements.txt
- name: Package Application
run: pyinstaller --onefile --windowed video-to-text.py

# - name: Package Application
# uses: JackMcKew/pyinstaller-action-windows@main
# with:
# path: .

- uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 307412f

Please sign in to comment.