Update main.yml
This commit is contained in:
parent
998596ce28
commit
e5285e7243
1 changed files with 27 additions and 1 deletions
28
.github/workflows/main.yml
vendored
28
.github/workflows/main.yml
vendored
|
@ -36,9 +36,35 @@ jobs:
|
|||
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
|
||||
|
||||
- name: Zip Linux Files
|
||||
run: |
|
||||
zip -r Mid_Simulator.Linux-amd64.zip 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
|
||||
|
||||
- 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
|
||||
|
||||
- uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: "${{ github.workspace }}/build/*"
|
||||
artifacts: "${{ github.workspace }}/build/*.zip"
|
||||
body: "Electron build of Mid-Sim, built on ${{ runner.name }} (${{ runner.os }} ${{ runner.arch }})"
|
||||
tag: "MidSimElectron-${{ github.sha }}"
|
||||
commit: "main"
|
||||
|
|
Loading…
Reference in a new issue