Skip to content

Commit 0afa2d7

Browse files
authored
CI: build.yml no longer invokes itself, always produce artifact (#243)
- Build check is now a separate workflow - Build with release config instead of debug - Upload artifacts
1 parent b5963af commit 0afa2d7

File tree

4 files changed

+21
-12
lines changed

4 files changed

+21
-12
lines changed

.github/workflows/build.yml

-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
11
name: Build Cemu
22

33
on:
4-
pull_request:
5-
paths-ignore:
6-
- "*.md"
7-
types:
8-
- opened
9-
- synchronize
10-
- reopened
11-
push:
12-
paths-ignore:
13-
- "*.md"
14-
branches:
15-
- main
164
workflow_call:
175
inputs:
186
deploymode:

.github/workflows/build_check.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build check
2+
on:
3+
pull_request:
4+
paths-ignore:
5+
- "*.md"
6+
types:
7+
- opened
8+
- synchronize
9+
- reopened
10+
push:
11+
paths-ignore:
12+
- "*.md"
13+
branches:
14+
- main
15+
16+
jobs:
17+
build:
18+
uses: ./.github/workflows/build.yml
19+
with:
20+
deploymode: release
21+
experimentalversion: 999999

0 commit comments

Comments
 (0)