mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-28 14:13:04 +00:00
35 lines
541 B
YAML
35 lines
541 B
YAML
name: Build
|
|
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
- '!dev'
|
|
tags:
|
|
- '**'
|
|
- '!v[0-9]+.[0-9]+.[0-9]+'
|
|
- '!v[0-9]+.[0-9]+.[0-9]+\+*'
|
|
- '!v[0-9]+.[0-9]+.[0-9]+-*'
|
|
- '!latest-dev'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
emu : [ Switch, Emulators ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name : Checkout
|
|
uses : actions/checkout@v3
|
|
-
|
|
name : Build artifacts
|
|
uses : ./.github/actions/build
|
|
with:
|
|
emu : ${{ matrix.emu }}
|