Update main.yml

This commit is contained in:
MeowcaTheoRange 2022-05-08 10:00:11 -05:00 committed by GitHub
parent 99675495d2
commit 8eaebbcfc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ jobs:
- name: Stage For Linux - name: Stage For Linux
run: | run: |
cd ${{ env.GITHUB_WORKSPACE }} cd ${{ github.workspace }}
mkdir build mkdir build
cd build cd build
nativefier https://meowcatheorange.github.io/Mid-Simulator/ --icon "${{ github.workspace }}/sprites/jellybeanTitle.png" --name "Mid-Simulator" --platform linux --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 nativefier https://meowcatheorange.github.io/Mid-Simulator/ --icon "${{ github.workspace }}/sprites/jellybeanTitle.png" --name "Mid-Simulator" --platform linux --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
@ -41,7 +41,7 @@ jobs:
- name: Stage For Windows - name: Stage For Windows
run: | run: |
cd ${{ env.GITHUB_WORKSPACE }}/build cd ${{ 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 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 ls
cd Mid-Simulator-win32-x64 cd Mid-Simulator-win32-x64
@ -49,12 +49,12 @@ jobs:
- name: Stage For Mac - name: Stage For Mac
run: | run: |
cd ${{ env.GITHUB_WORKSPACE }}/build cd ${{ 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 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 ls
cd Mid-Simulator-darwin-x64 cd Mid-Simulator-darwin-x64
zip -r Mid_Simulator.MacOSX-x86_64.zip * zip -r Mid_Simulator.MacOSX-x86_64.zip *
cd ${{ env.GITHUB_WORKSPACE }}/build cd ${{ 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 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 ls
cd Mid-Simulator-darwin-arm64 cd Mid-Simulator-darwin-arm64
@ -62,7 +62,7 @@ jobs:
- name: "[Debug] Check Dirs" - name: "[Debug] Check Dirs"
run: | run: |
cd ${{ env.GITHUB_WORKSPACE }}/build cd ${{ github.workspace }}/build
ls ls
cd .. cd ..
ls ls
@ -79,5 +79,5 @@ jobs:
- name: Cleanup - name: Cleanup
run: | run: |
cd ${{ env.GITHUB_WORKSPACE }} cd ${{ github.workspace }}
rm -rf build rm -rf build