Skip to content

Commit bb8a7e1

Browse files
committed
Avoid publishing artifacts for Debug builds
1 parent e222613 commit bb8a7e1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ test_script:
2929
cache:
3030
- packages -> **\packages.config
3131
- C:\Users\appveyor\.nuget\packages -> appveyor.yml
32+
33+
# 'Release' is hard-coded to ensure VSIX and NuGet artifacts are only published for release configuration builds
3234
artifacts:
33-
- path: 'DocumentationAnalyzers\**\*.vsix'
34-
- path: 'DocumentationAnalyzers\**\*.nupkg'
35+
- path: 'DocumentationAnalyzers\DocumentationAnalyzers.Vsix\bin\Release\net452\*.vsix'
36+
- path: 'DocumentationAnalyzers\DocumentationAnalyzers.CodeFixes\bin\Release\*.nupkg'
3537
- path: 'DocumentationAnalyzers.Status.json'

0 commit comments

Comments
 (0)