From d43a529878b621bc5a0e902f34530782fdf9bf56 Mon Sep 17 00:00:00 2001 From: Christian Minich Date: Wed, 13 Nov 2024 14:49:11 -0500 Subject: [PATCH] add set-build-output step --- .github/workflows/deploy-dagster-cloud.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-dagster-cloud.yml b/.github/workflows/deploy-dagster-cloud.yml index f524d8bb..1e089f49 100644 --- a/.github/workflows/deploy-dagster-cloud.yml +++ b/.github/workflows/deploy-dagster-cloud.yml @@ -247,13 +247,20 @@ jobs: push: true tags: ${{ env.IMAGE_REGISTRY }}:latest-pipes-example - #Deploy + #set build output + - name: Deploy to Dagster Cloud + id: ci-set-build-output + if: steps.prerun.outputs.result != 'skip' + uses: dagster-io/dagster-cloud-action/actions/utils/dagster-cloud-cli@v0.1.47 + with: + command: "ci set-build-output $LOCATIONS" + #Deploy - name: Deploy to Dagster Cloud id: ci-deploy if: steps.prerun.outputs.result != 'skip' uses: dagster-io/dagster-cloud-action/actions/utils/dagster-cloud-cli@v0.1.47 with: - command: "ci build $LOCATIONS" + command: "ci deploy $LOCATIONS" # Get branch deployment as input to job trigger below - name: Get branch deployment