From 9ae4ee14301a8362eb7df964756a10d827db5090 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 25 Jan 2022 16:35:02 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7238c59e..cd397088 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -344,7 +344,9 @@ jobs: - name: Build GAM with PyInstaller if: matrix.goal != 'test' run: | - export gampath="$(${realpath} ./dist/gam/)" + export gampath="./dist/gam" + mkdir -p "${gampath}" + export gampath="$(${realpath} "${gampath}")" export gam="${gampath}/gam" echo "gampath=${gampath}" >> $GITHUB_ENV export "gam=${gam}" >> $GITHUB_ENV