forked from LMacrini/Minesweeper-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
119 lines (94 loc) · 2.7 KB
/
build.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: Build Minesweeper
on:
push:
branches: ['build']
workflow_dispatch:
permissions: write-all
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
build-type:
- game
include:
- os: windows-latest
isWindows: true
arch: windows
- os: ubuntu-latest
isLinux: true
arch: linux
- os: macos-latest
isMac: true
arch: mac
- build-type: game
build-repo: ForkPrince/Minesweeper
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
repository: ${{ matrix.build-repo }}
ref: ${{ matrix.build-type }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install Linux Packages
if: ${{ matrix.isLinux }}
run: sudo apt-get install libasound2-dev
- name: Install Python Packages
run: pip install pygame pyinstaller
- name: Build App
run: pyinstaller Minesweeper.spec
- uses: nadeemjazmawe/inno-setup-action-cli@v6.0.5
if: ${{ matrix.isWindows }}
with:
filepath: './ISS/script.iss'
- name: Move the resources folder
run: mv ./resources ./dist/Minesweeper/resources
- name: Create Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.arch }}-${{ matrix.build-type }}
path: ./dist/
- name: Create Artifact (installer)
if: ${{ matrix.isWindows }}
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.arch }}-installer-${{ matrix.build-type }}
path: ./ISS/Output/
web:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
repository: ForkPrince/Minesweeper
ref: web
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install Python Packages
run: pip install pygame pygbag
- name: Build web version
run: pygbag ./ --build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
name: web
path: ./build/web
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
with:
artifact_name: web