diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index e450b00..fae0d6f 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -41,6 +41,11 @@ jobs: run: | pytest test/ + - name: Update executable in usr/bin + run: | + cp linpad.py usr/bin/linpad + chmod +x usr/bin/linpad + - name: List project files run: | ls -R @@ -53,6 +58,7 @@ jobs: cp -r ./DEBIAN ./output/ cp README.md ./output/ cp LICENSE ./output/ + cp -r ./usr ./output/usr - name: Create .deb Package run: | @@ -69,4 +75,4 @@ jobs: uses: actions/attest-build-provenance@v1 id: attest with: - subject-path: '${{ github.workspace }}/output' \ No newline at end of file + subject-path: '${{ github.workspace }}/output'