-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathappveyor.yml
35 lines (30 loc) · 926 Bytes
/
appveyor.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
version: '{build}'
skip_tags: true
image: Visual Studio 2017
# Courtesy of https://github.com/starkat99/appveyor-rust/
install:
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init -yv --default-toolchain stable --default-host x86_64-pc-windows-msvc
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
- rustup target add x86_64-unknown-linux-musl
- rustup target add aarch64-unknown-linux-musl
- rustc -vV
- cargo -vV
build_script:
- ps: ./Build.ps1 -version 1.0.
artifacts:
- path: publish/Seq.App.*.nupkg
deploy:
- provider: NuGet
api_key:
secure: Y1lTKWD1Plk540+Vt/IDaLmg+JYxbabZCA/ONEk4NDu6IqKjYmAIn4Sx64pIvR1m
skip_symbols: true
on:
branch: /^(main|dev)$/
- provider: GitHub
auth_token:
secure: hX+cZmW+9BCXy7vyH8myWsYdtQHyzzil9K5yvjJv7dK9XmyrGYYDj/DPzMqsXSjo
artifact: /Seq.App.*\.nupkg/
tag: v$(appveyor_build_version)
on:
branch: main