fix: π run dbt within its folder #115
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: CI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
docs: | |
name: Publish π | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build Docker | |
run: make build | |
- name: Run dbt | |
run: docker run -t -v $PWD/:/workspaces/datadex/ --env-file .env davidgasquez/datadex:latest make run | |
- name: Render Quarto | |
run: docker run -t -v $PWD/:/workspaces/datadex/ --env-file .env davidgasquez/datadex:latest make quarto | |
- name: Publish Docs | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: .quarto/output |