Skip to content

Commit

Permalink
Allow a full deployment not called 'prod'
Browse files Browse the repository at this point in the history
  • Loading branch information
shalabhc committed Oct 10, 2023
1 parent c44fae7 commit 06279ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deploy_pex.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def main():
deployment_name = get_branch_deployment_name(project_dir)
else:
print("Going to do a full deployment.", flush=True)
deployment_name = None
deployment_name = os.getenv("DAGSTER_CLOUD_DEPLOYMENT", "prod")

ubuntu_version = get_runner_ubuntu_version()
print("Running on Ubuntu", ubuntu_version, flush=True)
Expand Down

0 comments on commit 06279ed

Please sign in to comment.