Skip to content

CI and deploy steps for docs #2

CI and deploy steps for docs

CI and deploy steps for docs #2

name: Build & Deploy javadoc
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
branches:
# testing only, not allowed to run on OpenLineage/OpenLineage repo
- test-docs-deploy
jobs:
generate_javadoc:
if: |
(github.ref == 'refs/heads/test-docs-deploy' && github.repository != 'OpenLineage/OpenLineage' ) ||
(github.ref != 'refs/heads/test-docs-deploy' && github.repository == 'OpenLineage/OpenLineage')
name: "Generate Java docs"
runs-on: ubuntu-latest
steps:
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '11'
- name: Clear existing javadoc
run: rm -rf website/static/apidocs/javadoc
- name: Generate new java doc
run: |
cd client/java
./gradlew --console=plain javadoc
- name: Copy docs to website directory
run: cp client/java/build/docs/javadoc website/static/apidocs
- name: Commit javadoc to main
run: |
git config user.name github-actions
git config user.email [email protected]
git fetch
git checkout main
git add website/static/apidocs/*
git commit -m "[generated] reloading javadoc"
git push
netlify-deploy-changes:
uses: ./.github/workflows/netlify-deploy.yml
needs: generate_javadoc
secrets:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_TOKEN_SECRET: ${{ secrets.NETLIFY_TOKEN_SECRET }}