From 0753ced972b84a4e6906028448d941ab26d98105 Mon Sep 17 00:00:00 2001 From: Vasilis Petrakopoulos Date: Tue, 18 Jun 2024 15:57:04 +0300 Subject: [PATCH] Workflows error --- .github/workflows/pyinstaller.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/pyinstaller.yml b/.github/workflows/pyinstaller.yml index 7170893..7b9a75d 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: artifacts/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-linux-x86_64 + path: artifacts/a10y-win.exe pyinstaller-build-macos: runs-on: macos-latest @@ -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