From 772658deb17f6f82979743dca4eb3ede72375e07 Mon Sep 17 00:00:00 2001 From: MeowcaTheoRange <58280776+MeowcaTheoRange@users.noreply.github.com> Date: Sun, 8 May 2022 09:33:14 -0500 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8f3b167..e2685bd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,29 +38,23 @@ jobs: - name: Zip Linux Files run: | - zip -r Mid_Simulator.Linux-amd64.zip Mid-Simulator-linux-x64 + zip -r Mid_Simulator.Linux-amd64.zip . -i Mid-Simulator-linux-x64 - name: Stage For Windows run: | - cd ${{ env.GITHUB_WORKSPACE }} - mkdir build - cd 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 - name: Zip Windows Files run: | - zip -r Mid_Simulator.Windows-x86_64.zip Mid-Simulator-windows-x64 + zip -r Mid_Simulator.Windows-x86_64.zip . -i Mid-Simulator-windows-x64 - name: Stage For Mac run: | - cd ${{ env.GITHUB_WORKSPACE }} - mkdir build - cd build nativefier https://meowcatheorange.github.io/Mid-Simulator/ --icon "${{ github.workspace }}/sprites/jellybeanTitle.png" --name "Mid-Simulator" --platform osx --arch universal --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 - name: Zip Mac Files run: | - zip -r Mid_Simulator.MacOSX-Universal.zip Mid-Simulator-osx-universal + zip -r Mid_Simulator.MacOSX-Universal.zip . -i Mid-Simulator-osx-universal - uses: ncipollo/release-action@v1 with: