CI and deploy steps for docs #38
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 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 GitHub Actions / Build & Deploy javadocInvalid workflow file
|
||
uses: ./.github/workflows/netlify-deploy.yml | ||
secrets: | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
NETLIFY_TOKEN_SECRET: ${{ secrets.NETLIFY_TOKEN_SECRET }} |