Skip to content
Merged
Show file tree
Hide file tree
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: 4 additions & 4 deletions .github/workflows/CD_dagster_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ jobs:
# working tree either path sets up below.
- name: Prerun checks
id: prerun
uses: dagster-io/dagster-cloud-action/actions/utils/prerun@v1.13.19
uses: dagster-io/dagster-cloud-action/actions/utils/prerun@v1.13.20

# parse_workspace performs its own `actions/checkout`, which cleans the
# working tree -- fine here because the Docker path runs in a separate job
# that checks out again. Only its `build_info` output crosses the boundary.
- name: Parse dagster_cloud.yaml
if: steps.prerun.outputs.result == 'docker-deploy'
id: parse
uses: dagster-io/dagster-cloud-action/actions/utils/parse_workspace@v1.13.19
uses: dagster-io/dagster-cloud-action/actions/utils/parse_workspace@v1.13.20
with:
dagster_cloud_file: ${{ env.DAGSTER_CLOUD_FILE }}

Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
# dependency hash changes.
- name: Deploy to Dagster+ branch deployment
if: steps.prerun.outputs.result == 'pex-deploy'
uses: dagster-io/dagster-cloud-action/actions/build_deploy_python_executable@v1.13.19
uses: dagster-io/dagster-cloud-action/actions/build_deploy_python_executable@v1.13.20
with:
dagster_cloud_file: "$GITHUB_WORKSPACE/project-repo/${{ env.DAGSTER_CLOUD_FILE }}"
build_output_dir: "$GITHUB_WORKSPACE/build"
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
# checkout_repo is false because requirements.txt is generated above and
# a second checkout would discard it.
- name: Deploy to Dagster+ branch deployment
uses: dagster-io/dagster-cloud-action/actions/serverless_branch_deploy@v1.13.19
uses: dagster-io/dagster-cloud-action/actions/serverless_branch_deploy@v1.13.20
with:
organization_id: ${{ vars.DAGSTER_CLOUD_ORGANIZATION_ID }}
dagster_cloud_api_token: ${{ secrets.DAGSTER_CLOUD_API_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/CD_dagster_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ jobs:
# working tree either path sets up below.
- name: Prerun checks
id: prerun
uses: dagster-io/dagster-cloud-action/actions/utils/prerun@v1.13.19
uses: dagster-io/dagster-cloud-action/actions/utils/prerun@v1.13.20

# parse_workspace performs its own `actions/checkout`, which cleans the
# working tree -- fine here because the Docker path runs in a separate job
# that checks out again. Only its `build_info` output crosses the boundary.
- name: Parse dagster_cloud.yaml
if: steps.prerun.outputs.result == 'docker-deploy'
id: parse
uses: dagster-io/dagster-cloud-action/actions/utils/parse_workspace@v1.13.19
uses: dagster-io/dagster-cloud-action/actions/utils/parse_workspace@v1.13.20
with:
dagster_cloud_file: ${{ env.DAGSTER_CLOUD_FILE }}

Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
# spins up when the dependency hash changes.
- name: Deploy to Dagster+ prod
if: steps.prerun.outputs.result == 'pex-deploy'
uses: dagster-io/dagster-cloud-action/actions/build_deploy_python_executable@v1.13.19
uses: dagster-io/dagster-cloud-action/actions/build_deploy_python_executable@v1.13.20
with:
dagster_cloud_file: "$GITHUB_WORKSPACE/project-repo/${{ env.DAGSTER_CLOUD_FILE }}"
build_output_dir: "$GITHUB_WORKSPACE/build"
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
# checkout_repo is false because requirements.txt is generated above and
# a second checkout would discard it.
- name: Deploy to Dagster+ prod
uses: dagster-io/dagster-cloud-action/actions/serverless_prod_deploy@v1.13.19
uses: dagster-io/dagster-cloud-action/actions/serverless_prod_deploy@v1.13.20
with:
organization_id: ${{ vars.DAGSTER_CLOUD_ORGANIZATION_ID }}
dagster_cloud_api_token: ${{ secrets.DAGSTER_CLOUD_API_TOKEN }}
Expand Down
Loading