SuperMarioOdysseyOnline/.github/workflows/build.yml

36 lines
541 B
YAML
Raw Permalink Normal View History

2022-07-12 22:01:23 +00:00
name: Build
on:
push:
branches:
- '**'
- '!dev'
2022-07-12 22:01:23 +00:00
tags:
- '**'
- '!v[0-9]+.[0-9]+.[0-9]+'
- '!v[0-9]+.[0-9]+.[0-9]+\+*'
- '!v[0-9]+.[0-9]+.[0-9]+-*'
- '!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
uses : actions/checkout@v3
-
name : Build artifacts
uses : ./.github/actions/build
2022-09-04 23:41:34 +00:00
with:
emu : ${{ matrix.emu }}