We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0c2e19 commit 9951ae4Copy full SHA for 9951ae4
appveyor.yml
@@ -25,8 +25,10 @@ branches:
25
only:
26
- main
27
before_build:
28
- - echo %KEY_SNK_B64% > key.snk.b64
29
- - certutil -decode key.snk.b64 key.snk
+ - ps: >
+ echo "${env.KEY_SNK_B64}" | Out-File key.snk.b64
30
+ certutil -decode key.snk.b64 key.snk
31
+ - dir
32
- dotnet restore csharp -s https://api.nuget.org/v3/index.json
33
- ps: Compress-Archive -Path "resources\geocoding\*" -DestinationPath "resources\geocoding.zip"
34
- ps: Compress-Archive -Path "resources\test\geocoding\*" -DestinationPath "resources\test\testgeocoding.zip"
0 commit comments