We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b002795 commit ff4d324Copy full SHA for ff4d324
1 file changed
.github/workflows/deploy.yml
@@ -47,6 +47,15 @@ jobs:
47
run: |
48
cp -r project-repo/dbt_project project-repo/macro_agents/dbt_project
49
50
+ - name: Generate dbt manifest.json
51
+ if: steps.prerun.outputs.result == 'pex-deploy'
52
+ run: |
53
+ cd project-repo/macro_agents/dbt_project
54
+ # Install dbt dependencies first if needed
55
+ dbt deps || true
56
+ # Generate the manifest.json file
57
+ dbt parse --target prod || dbt parse
58
+
59
- name: Python Executable Deploy
60
if: steps.prerun.outputs.result == 'pex-deploy'
61
uses: dagster-io/dagster-cloud-action/actions/build_deploy_python_executable@v1.12.0
0 commit comments