migrate docs to Openlineage/Openlineage repo #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Deploy docs to Netlify GitHub Pages | ||
on: | ||
push: | ||
tags: | ||
- '[0-9]+.[0-9]+.[0-9]+' | ||
jobs: | ||
generate_java_doc: | ||
release-javadoc: | ||
# Generates java doc for Java client, add it to the repo under website/static/javadoc | ||
# TODO: generate javadoc for java client to be generated | ||
#./gradlew --console=plain javadoc | ||
# https://github.com/marketplace/actions/update-files-on-github | ||
netlify_deploy: | ||
name: 'Deploy to Netlify' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: jsmrcaga/[email protected] | ||
with: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN_SECRET }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
NETLIFY_DEPLOY_TO_PROD: true # can be false for now |