Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/CD_dagster_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,13 @@ concurrency:
jobs:
dagster-prod-deploy:
runs-on: ubuntu-latest
environment: production
# Deliberately not bound to the `production` GitHub environment. This job
# reads only repository-level DAGSTER_CLOUD_API_TOKEN and
# DAGSTER_CLOUD_ORGANIZATION_ID -- none of that environment's secrets -- and
# it runs on every push to `staging` that touches the code location. Binding
# it would put an approval gate on routine merges once `production` requires
# reviewers, which is a gate on the wrong thing: this publishes code, not
# data.

steps:
- name: Check out source repository
Expand Down
Loading