mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-08 18:55:07 +00:00
make actions only run on master and release_1
to be updated for future branches that get ran like this ig (?
This commit is contained in:
parent
efa8378797
commit
b7afd697ce
3 changed files with 9 additions and 3 deletions
4
.github/workflows/linux.yml
vendored
4
.github/workflows/linux.yml
vendored
|
@ -1,6 +1,8 @@
|
|||
name: Build Linux
|
||||
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches: [ "master", "release_1" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
4
.github/workflows/macos.yml
vendored
4
.github/workflows/macos.yml
vendored
|
@ -1,6 +1,8 @@
|
|||
name: Build MacOS
|
||||
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches: [ "master", "release_1" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
|
@ -1,6 +1,8 @@
|
|||
name: Build Windows
|
||||
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches: [ "master", "release_1" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
Loading…
Reference in a new issue