JackMcKew / pyinstaller-action-linux

Github Action for building executables with Pyinstaller for Linux
MIT License
28 stars 21 forks source link

What if my source code is the root of the repo? #5

Closed TheTechRobo closed 2 years ago

TheTechRobo commented 3 years ago

Do I use "." as the source code path or...?

I know it's not great practice, but I'm not redoing my file structure; it's bound to break something.

JackMcKew commented 3 years ago

Using the path as . should work without any issues, let me know how it goes

TheTechRobo commented 3 years ago

I'll try it if I find the time.

JacobMillner commented 2 years ago

I just tested this out and it does work but make sure you change actions/upload-artifact@v2 path as well!

- uses: actions/upload-artifact@v2
        with:
          name: package-name
          path: ./dist/linux
TheTechRobo commented 2 years ago

Yup, confirmed it works a few months ago, forgot to update the issue ^^"