diff options
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/debug.yml | 12 | ||||
-rw-r--r-- | .github/workflows/release-linux-package.yml | 14 | ||||
-rw-r--r-- | .github/workflows/release.yml | 14 |
3 files changed, 16 insertions, 24 deletions
diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index b88b607e..58d6750c 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -2,19 +2,15 @@ name: Debug Build & Package on: push: - branches: [ develop, develop_ui ] + branches: [ develop-** ] paths-ignore: - - '**/README.md' - - '**/README_CN.md' - - 'resource/ts/**' + - 'resource/locale/template/**' - 'docs/**' - '**.md' pull_request: - branches: [ develop ] + branches: [ develop-** ] paths-ignore: - - '**/README.md' - - '**/README_CN.md' - - 'resource/ts/**' + - 'resource/locale/template/**' - 'docs/**' - '**.md' diff --git a/.github/workflows/release-linux-package.yml b/.github/workflows/release-linux-package.yml index 43f26e9b..e53f9ac9 100644 --- a/.github/workflows/release-linux-package.yml +++ b/.github/workflows/release-linux-package.yml @@ -2,19 +2,17 @@ name: Build Linux Packages on: push: - branches: [ main, develop ] + branches: [ main, develop-** ] paths-ignore: - - '**/README.md' - - '**/README_CN.md' - - 'resource/ts/**' + - 'resource/locale/template/**' - 'docs/**' + - '**.md' pull_request: - branches: [ develop ] + branches: [ develop-** ] paths-ignore: - - '**/README.md' - - '**/README_CN.md' - - 'resource/ts/**' + - 'resource/locale/template/**' - 'docs/**' + - '**.md' env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7bb8120b..7550412c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,19 +2,17 @@ name: Build & Package on: push: - branches: [ main, develop ] + branches: [ main, develop-** ] paths-ignore: - - '**/README.md' - - '**/README_CN.md' - - 'resource/ts/**' + - 'resource/locale/template/**' - 'docs/**' + - '**.md' pull_request: - branches: [ develop ] + branches: [ develop-** ] paths-ignore: - - '**/README.md' - - '**/README_CN.md' - - 'resource/ts/**' + - 'resource/locale/template/**' - 'docs/**' + - '**.md' env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) |