-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.sqlserver.yml
More file actions
43 lines (33 loc) · 945 Bytes
/
appveyor.sqlserver.yml
File metadata and controls
43 lines (33 loc) · 945 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
43
image: Visual Studio 2022
install:
- choco install gitversion.portable -y
environment:
IGNORE_NORMALISATION_GIT_HEAD_MOVE: 1
assembly_info:
patch: false
before_build:
- ps: dotnet restore
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
build_script:
- ps: dotnet build /p:GenerateAssemblyInfo=false --configuration release --no-restore
after_build:
- cmd: nuget pack .nuget/EntityFrameworkCore.Seed.SqlServer.nuspec -version "%GitVersion_SemVer%" -prop "target=%CONFIGURATION%"
deploy:
- provider: NuGet
on:
APPVEYOR_REPO_TAG: true
api_key:
secure: V1xNLKig3MK6zJN2OxNqJyUklmlspccDIzK777xV8nrnW1Rk+WvnlsDbZc+HNbPk
skip_symbols: true
artifacts:
- path: '*.nupkg'
name: Authfix.EntityFrameworkCore.Seed.SqlServer
skip_commits:
files:
- src/EFCore.Seed.InMemory/
- src/EFCore.Seed.Postgres/
- src/EFCore.Seed/
branches:
only:
- /release/
- master