mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-31 20:03:46 +00:00
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
name: documentation
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
branches:
|
|
- master
|
|
# release:
|
|
# types: [published, edited]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
gh-pages:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
distribution: "zulu"
|
|
java-version: 11
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
- name: Install Python dependencies
|
|
run: ./metadata-ingestion/scripts/install_deps.sh
|
|
- name: Build Docs
|
|
run: |
|
|
./gradlew --info docs-website:build
|
|
|
|
- name: Deploy
|
|
if: github.event_name == 'push' && github.repository == 'datahub-project/datahub'
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./docs-website/build
|
|
cname: datahubproject.io
|