Update build.yml

This commit is contained in:
Jay Lee
2022-01-25 16:35:02 -05:00
committed by GitHub
parent 2a71a0f0be
commit 9ae4ee1430

View File

@@ -344,7 +344,9 @@ jobs:
- name: Build GAM with PyInstaller - name: Build GAM with PyInstaller
if: matrix.goal != 'test' if: matrix.goal != 'test'
run: | run: |
export gampath="$(${realpath} ./dist/gam/)" export gampath="./dist/gam"
mkdir -p "${gampath}"
export gampath="$(${realpath} "${gampath}")"
export gam="${gampath}/gam" export gam="${gampath}/gam"
echo "gampath=${gampath}" >> $GITHUB_ENV echo "gampath=${gampath}" >> $GITHUB_ENV
export "gam=${gam}" >> $GITHUB_ENV export "gam=${gam}" >> $GITHUB_ENV