-
Notifications
You must be signed in to change notification settings - Fork 6
103 lines (85 loc) · 2.7 KB
/
dotnet.yml
File metadata and controls
103 lines (85 loc) · 2.7 KB
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
101
102
103
name: CI
# Trigger the action on push to master
on:
push:
branches:
- master
# Sets permissions of the GITHUB_TOKEN to allow reading packages and writing to GH pages
permissions:
actions: read
pages: write
id-token: write
packages: read
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "ci"
cancel-in-progress: false
defaults:
run:
shell: pwsh
jobs:
publish-docs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
# Setup environment
- name: Checkout
uses: actions/checkout@v3
with:
lfs: true
- name: Dotnet Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: 10.x
source-url: https://nuget.pkg.github.com/MonkeyModdingTroop/index.json
env:
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Cache NuGet packages
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget
# Build and test projects
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-restore --no-build
- name: Move NuGet Packages
run: mv (Get-ChildItem -Recurse ./ -Include *.nupkg) ./
# Removes the version number from the package name
- name: Rename NuGet Packages
run: Get-ChildItem -Include *.nupkg -Path ./* | Rename-Item -NewName { $_.Name -Replace '\.\d+\.\d+\.\d+.*$','.nupkg' }
# Publish the NuGet package(s) as an artifact, so they can be used in the following jobs
- name: Upload NuGet Packages Artifact
uses: actions/upload-artifact@v4
with:
name: NuGet Packages
if-no-files-found: error
retention-days: 7
path: ./*.nupkg
- name: Move zip files
run: mv (Get-ChildItem -Recurse ./ -Include *.zip) ./
- name: Upload Zip Artifact
uses: actions/upload-artifact@v4
with:
name: Zips
if-no-files-found: error
retention-days: 7
path: ./*.zip
# Generate and upload docs
- run: dotnet tool update -g docfx
- run: docfx ./docfx.json
- name: Upload Docs artifact
uses: actions/upload-pages-artifact@v3
with:
path: './Docs/_site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4