From 4b9300bf11b818c59db2e0eb61da466079027ce1 Mon Sep 17 00:00:00 2001 From: Vasilis Petrakopoulos Date: Tue, 18 Jun 2024 16:41:54 +0300 Subject: [PATCH] Workflows error --- .github/workflows/pyinstaller.yml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pyinstaller.yml b/.github/workflows/pyinstaller.yml index 0429b1c..785934f 100644 --- a/.github/workflows/pyinstaller.yml +++ b/.github/workflows/pyinstaller.yml @@ -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 @@ -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 @@ -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