forked from ppy/osu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
35 lines (33 loc) · 925 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
image: Visual Studio 2022
version: 2024.906.{build}
pull_requests:
do_not_increment_build_number: true
skip_tags: true
clone_depth: 1
cache:
- '%LOCALAPPDATA%\NuGet\v3-cache'
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: 2024.906.2
file_version: 2024.906.2
build_script:
- cmd: >-
dotnet build osu.Desktop -c Release -r win-x64
dotnet build osu.Desktop -c Release -r linux-x64
dotnet build osu.Desktop -c Release -r linux-arm64
test: off
artifacts:
- path: ./osu.Desktop/bin/Release/net8.0/win-x64
name: osu-windows
- path: ./osu.Desktop/bin/Release/net8.0/linux-x64
name: osu-linux-x64
- path: ./osu.Desktop/bin/Release/net8.0/linux-arm64
name: osu-linux-arm64
deploy:
- provider: GitHub
tag: 2024.906.2
auth_token:
secure: EEbZ2OGaIPcjhGpQGzfE80TbrG14UiTPGNnQjMIKD5wzrYPQ4Kyhb3qLzMNahL1I
repository: PercyDan54/osu
artifact: osu-windows, osu-linux-x64, osu-linux-arm64