diff options
author | Saturneric <[email protected]> | 2022-01-06 09:57:15 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-06 09:57:15 +0000 |
commit | 98f2c88e32958ee587ab830646f066230345533a (patch) | |
tree | 903536af3d0f979438e21e2589bacadee9608138 | |
parent | <fix>(project): fixed CMakeLists.txt. (diff) | |
download | GpgFrontend-98f2c88e32958ee587ab830646f066230345533a.tar.gz GpgFrontend-98f2c88e32958ee587ab830646f066230345533a.zip |
<fix>(ci): fixed github action ci files.
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.) |