Skip to content

CI and deploy steps for docs #38

CI and deploy steps for docs

CI and deploy steps for docs #38

Workflow file for this run

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.event.base_ref == 'test-docs-deploy' && github.repository != 'OpenLineage/OpenLineage' ) ||
(github.event.base_ref != 'test-docs-deploy' && github.repository == 'OpenLineage/OpenLineage)
name: "Generate Java docs"
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:

Check failure on line 40 in .github/workflows/docs-deploy.yml

View workflow run for this annotation

GitHub Actions / Build & Deploy javadoc

Invalid workflow file

The workflow is not valid. .github/workflows/docs-deploy.yml (Line: 40, Col: 5): Unexpected value 'netlify-deploy-changes' .github/workflows/docs-deploy.yml (Line: 13, Col: 5): Required property is missing: runs-on
uses: ./.github/workflows/netlify-deploy.yml
secrets:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_TOKEN_SECRET: ${{ secrets.NETLIFY_TOKEN_SECRET }}