diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-05-06 20:01:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-05-06 20:01:59 (GMT) |
commit | bb2dca12ea82af9d6fcd7654f8b90514a93b3434 (patch) | |
tree | ce0f0b9c496c20eb5a33d7676db9f5807e9406ad /.github | |
parent | 05dfa1f94e49a86cb82880554b93db4b9200e0fa (diff) | |
download | tk-bb2dca12ea82af9d6fcd7654f8b90514a93b3434.zip tk-bb2dca12ea82af9d6fcd7654f8b90514a93b3434.tar.gz tk-bb2dca12ea82af9d6fcd7654f8b90514a93b3434.tar.bz2 |
Backport: Do not build every branch. Too expensive.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux-build.yml | 8 | ||||
-rw-r--r-- | .github/workflows/mac-build.yml | 8 | ||||
-rw-r--r-- | .github/workflows/win-build.yml | 8 |
3 files changed, 21 insertions, 3 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index 4245471..c6cbabd 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -1,5 +1,11 @@ name: Linux -on: [push] +on: + push: + branches: + - "main" + - "core-8-branch" + tags: + - "core-**" permissions: contents: read defaults: diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index cf19261..d05347e 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -1,5 +1,11 @@ name: macOS -on: [push] +on: + push: + branches: + - "main" + - "core-8-branch" + tags: + - "core-**" permissions: contents: read env: diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index 1da53b6..02ec606 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -1,5 +1,11 @@ name: Windows -on: [push] +on: + push: + branches: + - "main" + - "core-8-branch" + tags: + - "core-**" permissions: contents: read env: |