From 99675495d2407429361ebfa9a8381f340b86e8b2 Mon Sep 17 00:00:00 2001 From: MeowcaTheoRange <58280776+MeowcaTheoRange@users.noreply.github.com> Date: Sun, 8 May 2022 09:58:40 -0500 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 00221c5..5cd99ba 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,7 +41,7 @@ jobs: - name: Stage For Windows run: | - cd .. + cd ${{ env.GITHUB_WORKSPACE }}/build nativefier https://meowcatheorange.github.io/Mid-Simulator/ --icon "${{ github.workspace }}/sprites/jellybeanTitle.png" --name "Mid-Simulator" --platform windows --arch x64 --portable --disable-context-menu --height 400 --width 700 --single-instance --zoom 1.0 --lang "en-US" --min-width 700 --min-height 400 --max-width 1400 --max-height 800 ls cd Mid-Simulator-win32-x64 @@ -49,12 +49,12 @@ jobs: - name: Stage For Mac run: | - cd .. + cd ${{ env.GITHUB_WORKSPACE }}/build nativefier https://meowcatheorange.github.io/Mid-Simulator/ --icon "${{ github.workspace }}/sprites/jellybeanTitle.png" --name "Mid-Simulator" --platform osx --arch x64 --portable --disable-context-menu --height 400 --width 700 --single-instance --zoom 1.0 --lang "en-US" --min-width 700 --min-height 400 --max-width 1400 --max-height 800 ls cd Mid-Simulator-darwin-x64 zip -r Mid_Simulator.MacOSX-x86_64.zip * - cd .. + cd ${{ env.GITHUB_WORKSPACE }}/build nativefier https://meowcatheorange.github.io/Mid-Simulator/ --icon "${{ github.workspace }}/sprites/jellybeanTitle.png" --name "Mid-Simulator" --platform osx --arch arm64 --portable --disable-context-menu --height 400 --width 700 --single-instance --zoom 1.0 --lang "en-US" --min-width 700 --min-height 400 --max-width 1400 --max-height 800 ls cd Mid-Simulator-darwin-arm64 @@ -62,7 +62,7 @@ jobs: - name: "[Debug] Check Dirs" run: | - cd .. + cd ${{ env.GITHUB_WORKSPACE }}/build ls cd .. ls @@ -79,5 +79,5 @@ jobs: - name: Cleanup run: | - cd .. + cd ${{ env.GITHUB_WORKSPACE }} rm -rf build