-
If I have a private GitHub repository, eg. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
If you use fast deploys in your workflow, the following steps can install a private package as a dependency to your dagster cloud project. If you have
Once the |
Beta Was this translation helpful? Give feedback.
-
@johannkm thanks for this guide, I've implemented it and it works. But FYI, this line I need to install two dependencies, should I add all three steps for each dependency - or just the first two and the last third is shared? PS; when you have some time I would greatly appreciate your answer here: #17823 |
Beta Was this translation helpful? Give feedback.
-
@shalabhc are the python wheels built by Github Action cached or saved anywhere? I have an issue where I can see from Github Actions logs that the latest branch of private module is correctly pulled. But the "Python Executable Deploy" step is failing due to Is is possible to check the logs where packages of the pipeline are installed? |
Beta Was this translation helpful? Give feedback.
-
Thanks for the instructions here, these were super helpful. I am not sure if this is related to the issue above. My build was successful but I later got an
|
Beta Was this translation helpful? Give feedback.
If you use fast deploys in your workflow, the following steps can install a private package as a dependency to your dagster cloud project. If you have
ENABLE_FAST_DEPLOYS: "true"
in your.github/workflows/deploy.yml
then you use fast deploys.deploy.yml
file, add the following to the top ofsteps:
section in thedagster-cloud-default-deploy
job.