mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 19:25:16 +00:00
2898a762d4
Requirements: - there exists a tag named `latest-dev` already - there exists a release on that tag
30 lines
433 B
YAML
30 lines
433 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:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name : Checkout
|
|
uses : actions/checkout@v3
|
|
-
|
|
name : Build artifacts
|
|
uses : ./.github/actions/build
|