summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2023-04-28 10:28:06 -0700
committerDan Fandrich <dan@coneharvesters.com>2023-04-28 10:31:28 -0700
commit6cfa1a42eb970c4520b059e94549aac772b0dc73 (patch)
tree5b96c2184aec0bd95c126ff01d0486dfb7917a94
parentda9d9c3d1ccaa4522882c4fc81e5375770c09637 (diff)
downloadcurl-6cfa1a42eb970c4520b059e94549aac772b0dc73.tar.gz
CI: use another glob syntax for matching files on Appveyor
The previous globbing syntax was not matching files recursively in directories, so try appending a /* to more closely match the examples at https://www.appveyor.com/docs/how-to/filtering-commits/
-rw-r--r--appveyor.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 66d81406c..dff4c195f 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -360,11 +360,11 @@ branches:
skip_commits:
files:
- '.azure-pipelines.yml'
- - '.circleci/**'
+ - '.circleci/**/*'
- '.cirrus.yml'
- - '.github/**'
- - 'packages/**'
- - 'plan9/**'
+ - '.github/**/*'
+ - 'packages/**/*'
+ - 'plan9/**/*'
artifacts:
- path: '**/curl.exe'