Skip to content

Commit

Permalink
Workflows error
Browse files Browse the repository at this point in the history
  • Loading branch information
vpet98 committed Jun 18, 2024
1 parent 34ea4af commit 4b9300b
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ jobs:
spec: 'a10y.spec'
requirements: 'requirements.txt'
upload_exe_with_name: 'a10y-linux-x86_64'
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: a10y-linux-x86_64
path: a10y-linux-x86_64

pyinstaller-build-win:
runs-on: windows-latest
Expand All @@ -62,6 +67,11 @@ jobs:
spec: 'a10y.spec'
requirements: 'requirements.txt'
upload_exe_with_name: 'a10y-win.exe'
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: a10y-win.exe
path: a10y-win.exe

pyinstaller-build-macos:
runs-on: macos-latest
Expand All @@ -73,15 +83,8 @@ jobs:
spec: 'a10y.spec'
requirements: 'requirements.txt'
upload_exe_with_name: 'a10y-macos.exe'

upload-artifacts:
runs-on: ubuntu-latest
needs:
- pyinstaller-build-linux
- pyinstaller-build-win
- pyinstaller-build-macos
steps:
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
path: .
name: a10y-macos.exe
path: a10y-macos.exe

0 comments on commit 4b9300b

Please sign in to comment.