mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
allow manually starting builds
This commit is contained in:
parent
31c613f59d
commit
e2cd0f0ec6
1 changed files with 3 additions and 2 deletions
5
.github/workflows/build-coop.yaml
vendored
5
.github/workflows/build-coop.yaml
vendored
|
|
@ -7,10 +7,11 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- "**"
|
- "**"
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-ubuntu:
|
build-ubuntu:
|
||||||
if: ${{ contains(github.event.head_commit.message, '[build]')}}
|
if: ${{ contains(github.event.head_commit.message, '[build]') || github.event_name == 'workflow_dispatch' }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
@ -30,7 +31,7 @@ jobs:
|
||||||
name: sm64coopdx-ubuntu
|
name: sm64coopdx-ubuntu
|
||||||
path: ./build/us_pc/sm64coopdx
|
path: ./build/us_pc/sm64coopdx
|
||||||
build-windows:
|
build-windows:
|
||||||
if: ${{ contains(github.event.head_commit.message, '[build]')}}
|
if: ${{ contains(github.event.head_commit.message, '[build]') || github.event_name == 'workflow_dispatch' }}
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue