-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (82 loc) · 2.24 KB
/
default.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: default
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
workflow_dispatch:
env:
DOTNET_NOLOGO: true
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
submodules: true
- name: setup dotnet
uses: actions/setup-dotnet@v4
with:
cache: true
cache-dependency-path: ./**/packages.lock.json
dotnet-version: |
8.0.x
9.0.x
- name: restore
run: dotnet workload restore && dotnet restore --locked-mode
- name: restore npm
run: npm ci
working-directory: ./src/App
- name: build
run: dotnet build --no-restore
pack:
needs: [build]
if: startsWith(github.ref, 'refs/heads/main') || startsWith(github.ref, 'refs/heads/develop')
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
submodules: true
- name: setup dotnet
uses: actions/setup-dotnet@v4
with:
cache: true
cache-dependency-path: ./**/packages.lock.json
dotnet-version: |
8.0.x
9.0.x
- name: restore
run: dotnet workload restore && dotnet workload install wasm-tools-net8 && dotnet restore --locked-mode
- name: restore npm
run: npm ci
working-directory: ./src/App
- name: pack
run: dotnet pack -c Release -o dist --no-restore
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: cs2-launcher-packages
path: dist
publish:
needs: [pack]
runs-on: windows-latest
steps:
- name: setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: download artifact
uses: actions/download-artifact@v4
with:
name: cs2-launcher-packages
- name: push
run: dotnet nuget push "*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate