diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 8ba6530..dd15207 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -34,6 +34,18 @@ jobs: sudo apt-get -y install python3-pip pip3 install -r requirements.txt + # Run the build script + - name: Build + run: | + chmod +x scripts/build.sh + scripts/build.sh + + # Run the run script + - name: Run + run: | + chmod +x scripts/run.sh + scripts/run.sh + # Success message - name: Success run: echo "Success!"