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:
|
||||
branches:
|
||||
- "**"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
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
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
@ -30,7 +31,7 @@ jobs:
|
|||
name: sm64coopdx-ubuntu
|
||||
path: ./build/us_pc/sm64coopdx
|
||||
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
|
||||
defaults:
|
||||
run:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue