-
Notifications
You must be signed in to change notification settings - Fork 84
49 lines (43 loc) · 1.47 KB
/
deploy.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
name: GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
inputs:
dev_branch:
description: 'Change the build branch for deployment to personal website for PR previewing'
required: false
default: 'main'
type: string
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout main docs repo
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.dev_branch }}
- name: Setup Docusaurus
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
if: ${{ github.repository_owner == 'rancher' }}
run: |
yarn build
# Developer build used for PR reviews, deploys website with with a custom `baseUrl` for previewing
- name: Build website (dev)
if: ${{ github.repository_owner != 'rancher' && github.event_name == 'workflow_dispatch' }}
run: |
echo "replacing baseUrl in docusaurus.config.js with ${{ github.event.repository.name }}"
sed -i 's/baseUrl: '\''\//baseUrl: '\''\/${{ github.event.repository.name }}/' docusaurus.config.js
yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build