Skip to content

Commit c00c45e

Browse files
Create generate_docs.yml
1 parent f8b0f6f commit c00c45e

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/generate_docs.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Generate DBT Docs
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
7+
workflow_dispatch:
8+
9+
jobs:
10+
generate:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: '3.10'
18+
19+
- name: Install dbt
20+
run: python -m pip install dbt-core dbt-redshift
21+
22+
- name: Run a one-line script
23+
run: dbt --version
24+
25+
# Runs a set of commands using the runners shell
26+
# - name: Run a multi-line script
27+
# run: |
28+
# echo Add other actions to build,
29+
# echo test, and deploy your project.

0 commit comments

Comments
 (0)