From: Dan Fandrich Date: Fri, 28 Apr 2023 17:28:06 +0000 (-0700) Subject: CI: use another glob syntax for matching files on Appveyor X-Git-Tag: curl-8_1_0~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6cfa1a42eb970c4520b059e94549aac772b0dc73;p=thirdparty%2Fcurl.git 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/ --- diff --git a/appveyor.yml b/appveyor.yml index 66d81406ce..dff4c195f6 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'