Update main.yml

This commit is contained in:
MeowcaTheoRange 2022-05-08 08:56:29 -05:00 committed by GitHub
parent 777be3e712
commit 579e2a5ea0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,16 +31,16 @@ jobs:
- name: Stage For Linux - name: Stage For Linux
run: | run: |
cd ${GITHUB_WORKSPACE} cd ${{ env.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 "${{ env.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
- uses: ncipollo/release-action@v1 - uses: ncipollo/release-action@v1
with: with:
artifacts: "$GITHUB_WORKSPACE/build/*" artifacts: "${{ env.GITHUB_WORKSPACE }}/build/*"
body: "Electron build of Mid-Sim, built on $RUNNER_NAME ($RUNNER_OS $RUNNER_ARCH)" body: "Electron build of Mid-Sim, built on $RUNNER_NAME (${{ env.RUNNER_OS }} ${{ env.RUNNER_ARCH }})"
tag: "MidSimElectron-$GITHUB_SHA" tag: "MidSimElectron-${{ env.GITHUB_SHA }}"
commit: "main" commit: "main"
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}