-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2930aa3
commit d43a529
Showing
1 changed file
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|