JackMcKew / pyinstaller-action-windows

Github Action for building executables with Pyinstaller
MIT License
168 stars 67 forks source link

Binary not outputed to bin/ ? #24

Closed jdev082 closed 1 year ago

jdev082 commented 2 years ago

Here's the YML file of the action

name: Package Application with Pyinstaller

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2

    - name: Package Application
      uses: JackMcKew/pyinstaller-action-windows@v0.1.2
      with:
        path: src

    - uses: actions/upload-artifact@v2
      with:
        name: aurapad.exe
        path: bin

It doesn't fail, but still doesn't put the file in bin dir

jdev082 commented 2 years ago

It doesn't output any binaries at all

webdev03 commented 2 years ago

According to the readme, try making the path that gets uploaded

src/dist/windows
JackMcKew commented 2 years ago

It'll also depend on what targets you've specified in your spec file :)

JackMcKew commented 1 year ago

Closing due to stale