Merge pull request #85 from Synthetixio/feat/dbt-docs-pages #10
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: documentation | |
# on all pull requests | |
# on pushes to the main branch | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.10.11 | |
- name: Install python dependencies | |
run: | | |
cd transformers && pip install -r requirements.txt | |
- name: Install dbt dependencies | |
run: | | |
cd transformers/synthetix && dbt deps | |
- name: Build docs | |
run: | | |
cd transformers/synthetix && dbt docs generate --profiles-dir profiles --profile synthetix-host | |
env: | |
PG_HOST: ${{ secrets.PG_HOST }} | |
PG_PASSWORD: ${{ secrets.PG_PASSWORD }} | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: transformers/synthetix/target | |
force_orphan: true |