Skip to content

Commit

Permalink
add set-build-output step
Browse files Browse the repository at this point in the history
  • Loading branch information
cnolanminich committed Nov 13, 2024
1 parent 2930aa3 commit d43a529
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/deploy-dagster-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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/[email protected]
with:
command: "ci build $LOCATIONS"
command: "ci deploy $LOCATIONS"

# Get branch deployment as input to job trigger below
- name: Get branch deployment
Expand Down

0 comments on commit d43a529

Please sign in to comment.