We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8b0f6f commit c00c45eCopy full SHA for c00c45e
.github/workflows/generate_docs.yml
@@ -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