* WIP * WIP2 * WIP3 * Remove comment/better comments * Remote deployment updates * Adds GH user for yarn deploy * WIP 6 * WIP7 * WIP8 * WIP 10 * Working easy from home not so much in the cloud
38 lines
1.2 KiB
YAML
38 lines
1.2 KiB
YAML
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 }}
|
|
|