diff --git a/.github/workflows/pyinstall-win.yml b/.github/workflows/pyinstall-win.yml index 2ec9e3d..35f0573 100644 --- a/.github/workflows/pyinstall-win.yml +++ b/.github/workflows/pyinstall-win.yml @@ -40,13 +40,6 @@ jobs: pyinstaller ${{ env.MAIN_PY_FILE }} working-directory: ./ - - name: Create Artifact (Windows) - if: matrix.os == 'windows-latest' - uses: actions/upload-artifact@v3 - with: - name: windows-executables - path: dist/ - - name: Zip the app (Windows) if: matrix.os == 'windows-latest' uses: vimtor/action-zip@v1.2 @@ -58,15 +51,9 @@ jobs: if: matrix.os == 'windows-latest' with: name: windows app - path: dist/linux-x86.zip - - - name: Create Artifact (Linux) - if: matrix.os == 'ubuntu-latest' - uses: actions/upload-artifact@v3 - with: - name: linux-executables - path: dist/ - - name: Zip the app (Windows) + path: dist/windows-x86.zip + + - name: Zip the app (Linux) if: matrix.os == 'ubuntu-latest' uses: vimtor/action-zip@v1.2 with: @@ -79,9 +66,6 @@ jobs: name: linux app path: dist/linux-x86.zip - - name: List files in dist folder - run: ls -R ./dist/ - # - name: create release # id: create_release # uses: actions/create-release@v1