forked from rancher/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (47 loc) · 1.31 KB
/
docusaurus.yaml
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
name: Publish Docusaurus
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: yarn
- name: Install dependencies
run: cd docusaurus/ && yarn install:ci
- name: Build website
run: cd docusaurus/ && yarn build
- name: Add CNAME
run: |
echo "extensions.rancher.io" > ./docusaurus/build/CNAME
- name: Upload artifact
if: ${{ github.event_name == 'push' && github.repository_owner == 'rancher' }}
uses: actions/upload-pages-artifact@v3
with:
path: ./docusaurus/build
retention-days: 10
compression-level: 9
# Seperate the deploy job to isolate write permissions
deploy:
name: Publish
if: ${{ github.event_name == 'push' && github.repository_owner == 'rancher' }}
runs-on: ubuntu-latest
needs: build
# This is required to avoid https://github.com/actions/deploy-pages/issues/271
environment:
name: github-pages
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4