Skip to content

Commit 4b9300b

Browse files
committed
Workflows error
1 parent 34ea4af commit 4b9300b

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

.github/workflows/pyinstaller.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ jobs:
5151
spec: 'a10y.spec'
5252
requirements: 'requirements.txt'
5353
upload_exe_with_name: 'a10y-linux-x86_64'
54+
- name: Upload Artifact
55+
uses: actions/upload-artifact@v2
56+
with:
57+
name: a10y-linux-x86_64
58+
path: a10y-linux-x86_64
5459

5560
pyinstaller-build-win:
5661
runs-on: windows-latest
@@ -62,6 +67,11 @@ jobs:
6267
spec: 'a10y.spec'
6368
requirements: 'requirements.txt'
6469
upload_exe_with_name: 'a10y-win.exe'
70+
- name: Upload Artifact
71+
uses: actions/upload-artifact@v2
72+
with:
73+
name: a10y-win.exe
74+
path: a10y-win.exe
6575

6676
pyinstaller-build-macos:
6777
runs-on: macos-latest
@@ -73,15 +83,8 @@ jobs:
7383
spec: 'a10y.spec'
7484
requirements: 'requirements.txt'
7585
upload_exe_with_name: 'a10y-macos.exe'
76-
77-
upload-artifacts:
78-
runs-on: ubuntu-latest
79-
needs:
80-
- pyinstaller-build-linux
81-
- pyinstaller-build-win
82-
- pyinstaller-build-macos
83-
steps:
8486
- name: Upload Artifact
8587
uses: actions/upload-artifact@v2
8688
with:
87-
path: .
89+
name: a10y-macos.exe
90+
path: a10y-macos.exe

0 commit comments

Comments
 (0)