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 04c3e39 commit 0753ced
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 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: artifacts/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-linux-x86_64
path: artifacts/a10y-win.exe

pyinstaller-build-macos:
runs-on: macos-latest
Expand All @@ -73,6 +83,11 @@ jobs:
spec: 'a10y.spec'
requirements: 'requirements.txt'
upload_exe_with_name: 'a10y-macos.exe'
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: a10y-linux-x86_64
path: artifacts/a10y-macos.exe

# upload-artifacts:
# runs-on: ubuntu-latest
Expand Down

0 comments on commit 0753ced

Please sign in to comment.