mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-22 09:09:18 +01:00
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
This commit is contained in:
parent
b5963afbb5
commit
0afa2d75aa
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
@ -1,18 +1,6 @@
|
|||||||
name: Build Cemu
|
name: Build Cemu
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- "*.md"
|
|
||||||
types:
|
|
||||||
- opened
|
|
||||||
- synchronize
|
|
||||||
- reopened
|
|
||||||
push:
|
|
||||||
paths-ignore:
|
|
||||||
- "*.md"
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
deploymode:
|
deploymode:
|
||||||
|
21
.github/workflows/build_check.yml
vendored
Normal file
21
.github/workflows/build_check.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
name: Build check
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- "*.md"
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- synchronize
|
||||||
|
- reopened
|
||||||
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- "*.md"
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
uses: ./.github/workflows/build.yml
|
||||||
|
with:
|
||||||
|
deploymode: release
|
||||||
|
experimentalversion: 999999
|
Loading…
Reference in New Issue
Block a user