Skip to content

include deleted_at in followers #36

include deleted_at in followers

include deleted_at in followers #36

Workflow file for this run

dbt-docs.yml

Check failure on line 1 in .github/workflows/dbt-docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dbt-docs.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
# how to serve dbt docs
# author: chat GPT3.5
name: dbt-docs
on:
push:
branches:
- main # Adjust this if your main branch has a different name
jobs:
dbt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install dbt
dbt deps
- name: Run dbt
run: dbt run
- name: Generate dbt Docs
run: dbt docs generate
- name: Deploy dbt Docs to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: target/pkgs