Skip to content

Commit 62e7268

Browse files
authored
appveyor. Fix zip name for signed artifacts (#168)
1 parent 06d6afe commit 62e7268

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ init:
2727
$env:fileVersion = $env:APPVEYOR_BUILD_VERSION -replace '(\d+)\.(\d+)\.([^.]+)\.(\d+)', '$1.$2.999.$4'
2828
$env:productVersion = $env:fileVersion
2929
}
30+
$env:signed = $env:CONFIGURATION.Substring(7)
3031
3132
Update-AppveyorBuild -Version $env:fileVersion
3233
@@ -61,7 +62,7 @@ test_script:
6162
- dotnet test tests/ClosedXML.Report.Tests
6263
after_build:
6364
- cd ClosedXML.Report/bin/%CONFIGURATION%/
64-
- 7z a ClosedXML.Report_%productVersion%.zip */ClosedXML.Report.dll
65+
- 7z a ClosedXML.Report%signed%_%productVersion%.zip */ClosedXML.Report.dll
6566
- cd ../../../
6667

6768
artifacts:
@@ -83,6 +84,7 @@ deploy:
8384
APPVEYOR_REPO_TAG: true
8485
- provider: NuGet
8586
artifact: /.*\.nupkg/
87+
skip_symbols: false
8688
api_key:
8789
secure: GZMuY+C0BuVSLsTJ0b2oLNVNXdd8ffaFJapOaUDKlrfOLmrHc0S44AqSE6pjK1yC
8890
on:

0 commit comments

Comments
 (0)