Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

openlineage javadoc update #385

openlineage javadoc update

openlineage javadoc update #385

Workflow file for this run

name: Gatsby Publish
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build openapi docs
run: yarn run build:docs
- name: Build Gatsby site
run: yarn run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
external_repository: OpenLineage/OpenLineage.github.io
publish_branch: gh-pages # default: gh-pages
publish_dir: ./public