Skip to content

Commit ebd625d

Browse files
committed
Updated key for GitHub releases for AppVeyor.
1 parent ab1df9f commit ebd625d

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Diff for: appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ deploy:
2222
branch: /^(master)$/
2323
- provider: GitHub
2424
auth_token:
25-
secure: Bo3ypKpKFxinjR9ShkNekNvkob2iklHJU+UlYyfHtcFFIAa58SV2TkEd0xWxz633
25+
secure: ggZTqqV1z0xecDoQbeoy3A7xikShCt9FWZIGp95dG9Fo0p5RAT9oGU0ZekHfUIwk
2626
artifact: /Serilog.*\.nupkg/
2727
tag: v$(appveyor_build_version)
2828
on:

Diff for: build.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
dotnet restore
3+
for path in src/*/project.json; do
4+
dirname="$(dirname "${path}")"
5+
dotnet build ${dirname} -c Release
6+
done
7+
8+
dotnet restore
9+
for path in test/*/project.json; do
10+
dirname="$(dirname "${path}")"
11+
dotnet build ${dirname} -c Release
12+
done

0 commit comments

Comments
 (0)