-
Notifications
You must be signed in to change notification settings - Fork 0
93 lines (82 loc) · 4.01 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# 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
permissions:
contents: write
# 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
- name: Install Dependencies
run: sudo npm install -g nativefier
- name: Stage Overall
run: |
cd ${{ github.workspace }}
zip -r Mid_Simulator.Source.zip *
mkdir build
mv Mid_Simulator.Source.zip build/Mid_Simulator.Source.zip
- name: Stage For Linux
run: |
cd ${{ github.workspace }}
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
cd Mid-Simulator-linux-x64
zip -r ../Mid_Simulator.Linux-amd64.zip *
# - 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 *
- name: "[Debug] Check Dirs"
run: |
cd ${{ github.workspace }}/build
echo "LS 1"
ls
cd ..
echo "LS 2"
ls
cd ..
echo "LS 3"
ls
- uses: ncipollo/release-action@v1
with:
artifacts: "${{ github.workspace }}/build/*.zip"
body: "Electron build of Mid-Sim, built automatically on ${{ runner.name }} (${{ runner.os }} ${{ runner.arch }})"
tag: "Mid-SimElectronBuild"
name: "Mid-Sim Electron Build (${{ github.run_id }})"
allowUpdates: true
commit: "main"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Cleanup
run: |
cd ${{ github.workspace }}
rm -rf build