From 385e553e5ab453ff8905707b9beb2d4ba7c68116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Sobczy=C5=84ski?= <32263891+h4570@users.noreply.github.com> Date: Fri, 28 May 2021 21:24:47 +0200 Subject: [PATCH] changed tyra env path --- .github/workflows/compilation.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/compilation.yml b/.github/workflows/compilation.yml index 5c4e65d..81be87a 100644 --- a/.github/workflows/compilation.yml +++ b/.github/workflows/compilation.yml @@ -27,34 +27,34 @@ jobs: LIBTIFF: ${PS2SDK}/ports LIBJPEG: ${PS2SDK}/ports LIBPNG: ${PS2SDK}/ports - TYRA: ${PWD} + TYRA: ${GITHUB_WORKSPACE} run: | make - name: Compile unit test project working-directory: ./src/unit_tests/ env: - TYRA: ${PWD} + TYRA: ${GITHUB_WORKSPACE} run: | make - name: Compile cube project working-directory: ./src/samples/cube/ env: - TYRA: ${PWD} + TYRA: ${GITHUB_WORKSPACE} run: | make - name: Compile floors project working-directory: ./src/samples/floors/ env: - TYRA: ${PWD} + TYRA: ${GITHUB_WORKSPACE} run: | make - name: Compile dolphin project working-directory: ./src/samples/dolphin/ env: - TYRA: ${PWD} + TYRA: ${GITHUB_WORKSPACE} run: | make