GitHub Actions CD "Cannot find path because it does not exist"
I’m quite new to using Actions, and I’m having some trouble. My YML file looks like this: name: Build on: workflow_dispatch: push: branches: ["main", "master"] jobs: build: runs-on: windows-latest steps: – name: Build with py2exe run: | pip install py2exe cd app python setup.py py2exe I’m trying to compile app/main.py into a .exe file. I’m… Read More GitHub Actions CD "Cannot find path because it does not exist"