Mid-Simulator/.github/workflows/main.yml

94 lines
4 KiB
YAML
Raw Normal View History

2022-05-08 12:53:02 +00:00
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
workflow_run:
workflows: [pages-build-deployment]
types:
- completed
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
2022-05-08 13:07:09 +00:00
permissions:
contents: write
2022-05-08 12:53:02 +00:00
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Runs a set of commands using the runners shell
2022-05-08 13:03:16 +00:00
- name: Install Dependencies
2022-05-08 13:17:45 +00:00
run: sudo npm install -g nativefier
2022-05-08 13:03:16 +00:00
2022-05-08 15:35:47 +00:00
- name: Stage Overall
2022-05-08 13:17:45 +00:00
run: |
2022-05-08 15:00:11 +00:00
cd ${{ github.workspace }}
2022-05-08 15:35:47 +00:00
zip -r Mid_Simulator.Source.zip *
2022-05-08 13:17:45 +00:00
mkdir build
2022-05-08 15:35:47 +00:00
mv Mid_Simulator.Source.zip build/Mid_Simulator.Source.zip
- name: Stage For Linux
run: |
cd ${{ github.workspace }}
2022-05-08 13:17:45 +00:00
cd build
2022-05-08 14:00:36 +00:00
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
2022-05-08 14:52:53 +00:00
cd Mid-Simulator-linux-x64
2022-05-08 15:13:22 +00:00
zip -r ../Mid_Simulator.Linux-amd64.zip *
2022-05-08 14:09:50 +00:00
2022-05-08 15:13:22 +00:00
# - name: Stage For Windows
# run: |
# 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
# ls
# cd Mid-Simulator-win32-x64
# zip -r ../Mid_Simulator.Windows-x86_64.zip *
#
# - name: Stage For Mac
# run: |
# 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
# ls
# cd Mid-Simulator-darwin-x64
# zip -r ../Mid_Simulator.MacOSX-x86_64.zip *
# 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
# ls
# cd Mid-Simulator-darwin-arm64
# zip -r ../Mid_Simulator.MacOSX-arm64.zip *
2022-05-08 14:52:53 +00:00
- name: "[Debug] Check Dirs"
run: |
2022-05-08 15:00:11 +00:00
cd ${{ github.workspace }}/build
2022-05-08 15:13:22 +00:00
echo "LS 1"
2022-05-08 14:52:53 +00:00
ls
cd ..
2022-05-08 15:13:22 +00:00
echo "LS 2"
2022-05-08 14:52:53 +00:00
ls
cd ..
2022-05-08 15:13:22 +00:00
echo "LS 3"
2022-05-08 14:52:53 +00:00
ls
2022-05-08 14:09:50 +00:00
2022-05-08 13:07:09 +00:00
- uses: ncipollo/release-action@v1
with:
2022-05-08 14:09:50 +00:00
artifacts: "${{ github.workspace }}/build/*.zip"
2022-05-08 15:35:47 +00:00
body: "Electron build of Mid-Sim, built automatically on ${{ runner.name }} (${{ runner.os }} ${{ runner.arch }})"
2022-05-08 17:55:07 +00:00
tag: "Mid-SimElectronBuild"
2022-05-08 16:04:22 +00:00
name: "Mid-Sim Electron Build"
2022-05-08 17:55:07 +00:00
allowUpdates: true
2022-05-08 13:33:41 +00:00
commit: "main"
2022-05-08 13:07:09 +00:00
token: ${{ secrets.GITHUB_TOKEN }}
2022-05-08 13:17:45 +00:00
- name: Cleanup
run: |
2022-05-08 15:00:11 +00:00
cd ${{ github.workspace }}
2022-05-08 13:17:45 +00:00
rm -rf build