1
0
mirror of synced 2026-02-01 13:02:06 -05:00
Files
airbyte/.github/workflows/documentation.yml
Topher Lubaway f065d361b1 Toph docs pipeline fixes bugs n gitbook (#12114)
* 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
2022-04-19 14:49:04 -05:00

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 }}