-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.appveyor.yml
More file actions
42 lines (35 loc) · 862 Bytes
/
.appveyor.yml
File metadata and controls
42 lines (35 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
init:
- git config --global core.autocrlf input
clone_depth: 1
test: off
os: Visual Studio 2017
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
install:
- cmd: git fetch --depth 50
- cmd: git fetch --tags --depth 50
- cmd: git fetch origin master:master --depth 50
# Install node
- ps: Install-Product node ''
# Prepare appveyor
- cmd: bash ./script/prepare-appveyor.sh
# Display .NET Core info
- cmd: dotnet --info
# Restore build script
- cmd: dotnet restore build
before_build:
- cmd: bash ./script/git-version.sh --verbose get
build_script:
- cmd: dotnet build build
artifacts:
- path: artifacts/*.nupkg
deploy:
- provider: Environment
name: YoloDev MyGet
on:
branch: master
- provider: Environment
name: NuGet Central
on:
appveyor_repo_tag: true