Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
saltydk committed Feb 6, 2024
1 parent f37d67b commit f23f6e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:
run: cd build && python3.10 -m venv venv

- name: Install Dependencies
run: ./venv/bin/pip install PyYAML nuitka
run: cd build && ./venv/bin/pip install PyYAML nuitka

- name: Install Dependencies
run: ./venv/bin/pip list
run: cd build && ./venv/bin/pip list

- name: Compile binary
run: ./venv/bin/python -m nuitka sb.py --onefile -o sb
run: cd build && ./venv/bin/python -m nuitka sb.py --onefile -o sb

- name: Copy binary and purge build directory
run: cd .. && cp ./build/sb sb && rm -rf ./build
run: cp ./build/sb sb && rm -rf ./build

- name: List Directory Contents
run: ls -la
Expand Down

0 comments on commit f23f6e2

Please sign in to comment.