This repository has been archived by the owner on Aug 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.nuget.yml
64 lines (56 loc) · 1.73 KB
/
appveyor.nuget.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# General Configuration
version: '{build}'
skip_branch_with_pr: true
# Environment Configuration
image: Visual Studio 2017
cache:
- '%LocalAppData%\NuGet\v3-cache'
init:
- ps: |
If($Env:APPVEYOR_REPO_TAG -eq "true")
{
Write-Host "We now have a tagged release. Proper."
Write-Host "Tag is $Env:APPVEYOR_REPO_TAG_NAME"
$env:APPVEYOR_BUILD_VERSION=$env:APPVEYOR_REPO_TAG_NAME
Update-AppveyorBuild -Version "$Env:APPVEYOR_REPO_TAG_NAME"
}
else
{
$releases = "https://api.github.com/repos/$env:APPVEYOR_REPO_NAME/releases"
$tag = (Invoke-WebRequest $releases | ConvertFrom-Json)[0].tag_name
$spl = $tag.Split("-")[0]
Update-AppveyorBuild -Version "$spl.$Env:APPVEYOR_BUILD_VERSION-wip"
}
Write-Host "Hello. Build version is: $Env:APPVEYOR_BUILD_VERSION"
install:
#init and update submodules
- git submodule update --recursive --init
# version
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
# Build Configuration
platform: Any CPU
configuration: Release
before_build:
- nuget restore
build:
publish_nuget: true
include_nuget_references: true
publish_nuget_symbols: true
project: SpeckleStructuralClasses\SpeckleStructuralClasses.csproj
verbosity: minimal
#deploy to nuget
deploy:
- provider: NuGet
server: # remove to push to NuGet.org
api_key:
secure: n4EiHDLVSLjOzqT7OOOg3US3PWs6fNsOaGpyT/EFBKrTKl/1wMmmKt73MNuTngD+
skip_symbols: false
symbol_server: # remove to push symbols to SymbolSource.org
artifact: /.*\.nupkg/
on:
appveyor_repo_tag: true