Update workflow
This commit is contained in:
parent
7fc16d8774
commit
90ab9bd893
5 changed files with 45 additions and 1 deletions
11
.github/workflows/build_linux.yml
vendored
11
.github/workflows/build_linux.yml
vendored
|
@ -4,9 +4,20 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'deps/**'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'version.inc'
|
||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'deps/**'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'version.inc'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
appimage-builder:
|
appimage-builder:
|
||||||
|
|
11
.github/workflows/build_mac_arm64.yml
vendored
11
.github/workflows/build_mac_arm64.yml
vendored
|
@ -4,9 +4,20 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'deps/**'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'version.inc'
|
||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'deps/**'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'version.inc'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_osx_arm64:
|
build_osx_arm64:
|
||||||
|
|
11
.github/workflows/build_mac_x64.yml
vendored
11
.github/workflows/build_mac_x64.yml
vendored
|
@ -4,9 +4,20 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'deps/**'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'version.inc'
|
||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'deps/**'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'version.inc'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_osx_x86_64:
|
build_osx_x86_64:
|
||||||
|
|
11
.github/workflows/build_win.yml
vendored
11
.github/workflows/build_win.yml
vendored
|
@ -4,9 +4,20 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'deps/**'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'version.inc'
|
||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'deps/**'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'version.inc'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_win64:
|
build_win64:
|
||||||
|
|
2
.github/workflows/publish_docs_to_wiki.yml
vendored
2
.github/workflows/publish_docs_to_wiki.yml
vendored
|
@ -6,7 +6,7 @@ on:
|
||||||
paths:
|
paths:
|
||||||
- doc/** # This includes all sub folders
|
- doc/** # This includes all sub folders
|
||||||
branches:
|
branches:
|
||||||
- PublishDocsToWiki # This can be changed to any branch of your preference
|
- main # This can be changed to any branch of your preference
|
||||||
|
|
||||||
env:
|
env:
|
||||||
USER_TOKEN: ${{ secrets.GH_WIKI_PAT }} # This is the repository secret personal access token
|
USER_TOKEN: ${{ secrets.GH_WIKI_PAT }} # This is the repository secret personal access token
|
||||||
|
|
Loading…
Reference in a new issue