Skip to content

Commit

Permalink
Work on deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-r-rose committed Apr 11, 2023
1 parent 0a44d27 commit 97c7044
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- dbt-docs
permissions:
contents: write
jobs:
Expand All @@ -17,5 +18,13 @@ jobs:
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
- name: Install dependencies
run: |
pip install -r transform/requirements.txt
pip install mkdocs-material
- name: Build dbt docs
run: |
dbt docs generate --project-dir=transform
cp -r transform/target docs/dbt_docs
- name: Deploy 🚀
run: mkdocs gh-deploy --force

0 comments on commit 97c7044

Please sign in to comment.