-
Notifications
You must be signed in to change notification settings - Fork 4.4k
37 lines (33 loc) · 1.18 KB
/
documentation.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
name: compile-docusaurus-static-assets
on:
push:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
deploy-docusaurus-to-docs-airbyte-io:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repo
# `uses` taps GH ORG/REPO@version.
# "actions" is a default org for some common GH actions
uses: actions/checkout@v3
with:
fetch-depth: 0
# Node is required for yarn
- name: Set up Yarn
uses: actions/setup-node@v2
with:
node-version: '16.13.0'
cache: 'yarn'
cache-dependency-path: docusaurus
# # Build Docusaurus website
# - name: Check for docusaurus changes not committed
# run: ./tools/bin/check_docusaurus_build_changes
# # Install and build Docusaurus website
# - name: Deploy docs to production (it's weird)
# run: ./tools/bin/deploy_docusaurus
# env:
# GITHUB_TOKEN: ${{ secrets.OCTAVIA_PAT }}