-
-
Notifications
You must be signed in to change notification settings - Fork 140
44 lines (35 loc) · 1.15 KB
/
docs.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
name: Publish docs
on: [ workflow_dispatch ]
jobs:
publish_docs_job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Setup .NET 7
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Build & Deploy docs
run: ./build.sh --no-color publish-docs
if: ${{ github.ref == 'refs/heads/main' }}
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
# - name: Generate Algolia DocSearch index
# uses: darrenjennings/algolia-docsearch-action@master
# with:
# algolia_application_id: ${{ secrets.ALGOLIA_APPLICATION_ID }}
# algolia_api_key: ${{ secrets.ALGOLIA_API_KEY }}
# file: 'docs/.vitepress/algolia-config.json'