2022-07-12 22:01:23 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '**'
|
2022-08-13 19:17:11 +00:00
|
|
|
- '!dev'
|
2022-07-12 22:01:23 +00:00
|
|
|
tags:
|
|
|
|
- '**'
|
|
|
|
- '!v[0-9]+.[0-9]+.[0-9]+'
|
2022-08-13 19:13:16 +00:00
|
|
|
- '!v[0-9]+.[0-9]+.[0-9]+\+*'
|
|
|
|
- '!v[0-9]+.[0-9]+.[0-9]+-*'
|
2022-08-13 19:17:11 +00:00
|
|
|
- '!latest-dev'
|
2022-07-12 22:01:23 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
2022-09-04 23:41:34 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-06-05 20:56:27 +00:00
|
|
|
emu : [ Switch, Emulators ]
|
2022-07-12 22:01:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name : Checkout
|
2024-05-15 19:50:36 +00:00
|
|
|
uses : actions/checkout@v4
|
2022-07-12 22:01:23 +00:00
|
|
|
-
|
|
|
|
name : Build artifacts
|
|
|
|
uses : ./.github/actions/build
|
2022-09-04 23:41:34 +00:00
|
|
|
with:
|
|
|
|
emu : ${{ matrix.emu }}
|