diff options
| author | Arisotura <thetotalworm@gmail.com> | 2020-04-25 18:48:33 +0200 |
|---|---|---|
| committer | Arisotura <thetotalworm@gmail.com> | 2020-04-25 18:48:33 +0200 |
| commit | 3b3a09ed2b7a1f3d6f81ba6d1ddd7fbf17acd52d (patch) | |
| tree | 83f92d55db61c0d6739d572c34a9f8d6cc3f940c /.github | |
| parent | 231f0fc2e5e22b2d4907341cc191cfc9215556fb (diff) | |
| parent | 5ef71181c891aceec9db7297d1642b0e70e98911 (diff) | |
attempt something. maybe this worked, maybe not.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build-ubuntu.yml | 8 | ||||
| -rw-r--r-- | .github/workflows/build-windows.yml | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index fed0f3e..b57c5b7 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -1,6 +1,12 @@ name: CMake Build (Ubuntu x86-64) -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: + branches: + - master env: BUILD_TYPE: Release diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index c7d05d0..ec14e30 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -1,6 +1,12 @@ name: CMake Build (Windows x86-64) -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: + branches: + - master env: BUILD_TYPE: Release |