From 2fbd366962765715348fd6a527b6605019a5078d Mon Sep 17 00:00:00 2001 From: goubermouche <71839692+Goubermouche@users.noreply.github.com> Date: Sun, 17 Dec 2023 16:53:51 +0100 Subject: [PATCH 1/2] Updated main.yml so that it updates the working directory correctly. --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c07f435d..f25f1512 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,8 +21,12 @@ jobs: tar -xzvf premake-5.0.0-alpha16-linux.tar.gz sudo mv premake5 /usr/local/bin/ + - name: Change to sigma directory + run: cd sigma + - name: Run Premake run: premake5 gmake - + - name: Compile Project run: make config=debug + working-directory: ./sigma From 1381d1a913611cc1cadf216c24d8f22ac292037b Mon Sep 17 00:00:00 2001 From: goubermouche <71839692+Goubermouche@users.noreply.github.com> Date: Sun, 17 Dec 2023 16:55:34 +0100 Subject: [PATCH 2/2] Updated main.yml. --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f25f1512..2ae821e6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,12 +21,11 @@ jobs: tar -xzvf premake-5.0.0-alpha16-linux.tar.gz sudo mv premake5 /usr/local/bin/ - - name: Change to sigma directory - run: cd sigma + - name: Print current dir + run: ls - name: Run Premake run: premake5 gmake - name: Compile Project run: make config=debug - working-directory: ./sigma