diff options
| author | Seas0 <30485844+Seas0@users.noreply.github.com> | 2022-01-01 00:21:32 +0800 |
|---|---|---|
| committer | Seas0 <30485844+Seas0@users.noreply.github.com> | 2022-01-01 00:23:32 +0800 |
| commit | f3b300e9e0a5297e424393ce987c41ca13516ca7 (patch) | |
| tree | 6e3d13f60cd46880daeb72b7cf07f0e093c0e122 /.github/workflows | |
| parent | ff82c956f140116a66c8926919b35229a504b735 (diff) | |
| download | box64-f3b300e9e0a5297e424393ce987c41ca13516ca7.tar.gz box64-f3b300e9e0a5297e424393ce987c41ca13516ca7.zip | |
Fix the typo of CMakeLists.txt in Github Action configuration
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 001e7d65..46cf94d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ on: - "**/*.h" - "**/*.S" - "**/*.py" - - "CMakeList.txt" + - "CMakeLists.txt" - "**/*.yml" pull_request: types: [assigned, opened, synchronize, reopened] @@ -19,7 +19,7 @@ on: - "**/*.h" - "**/*.S" - "**/*.py" - - "CMakeList.txt" + - "CMakeLists.txt" - "**/*.yml" jobs: |