-
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.
Advance hooli github actions to 0.1.44 for testing
Summary:
- Loading branch information
Showing
1 changed file
with
11 additions
and
11 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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
steps: | ||
- name: Pre-run checks | ||
id: prerun | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
@@ -36,14 +36,14 @@ jobs: | |
- name: Validate configuration | ||
id: ci-validate | ||
if: steps.prerun.outputs.result != 'skip' | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
with: | ||
command: "ci check --project-dir ${{ env.DAGSTER_PROJECT_DIR }} --dagster-cloud-yaml-path ${{ env.DAGSTER_CLOUD_YAML_PATH }}" | ||
|
||
- name: Initialize build session | ||
id: ci-init | ||
if: steps.prerun.outputs.result != 'skip' | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
with: | ||
project_dir: ${{ env.DAGSTER_PROJECT_DIR }} | ||
dagster_cloud_yaml_path: ${{ env.DAGSTER_CLOUD_YAML_PATH }} | ||
|
@@ -97,7 +97,7 @@ jobs: | |
- name: Update build session with image tag for data-eng-pipeline | ||
id: ci-set-build-output-data-eng-pipeline | ||
if: steps.prerun.outputs.result != 'skip' | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
with: | ||
command: "ci set-build-output --location-name=data-eng-pipeline --image-tag=$IMAGE_TAG-data-eng-pipeline" | ||
|
||
|
@@ -115,7 +115,7 @@ jobs: | |
- name: Update build session with image tag for basics | ||
id: ci-set-build-output-basics | ||
if: steps.prerun.outputs.result != 'skip' | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
with: | ||
command: "ci set-build-output --location-name=basics --image-tag=$IMAGE_TAG-basics" | ||
|
||
|
@@ -131,7 +131,7 @@ jobs: | |
- name: Update build session with image tag for batch enrichment | ||
id: ci-set-build-output-batch-enrichment | ||
if: steps.prerun.outputs.result != 'skip' | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
with: | ||
command: "ci set-build-output --location-name=batch_enrichment --image-tag=$IMAGE_TAG-batch-enrichment" | ||
|
||
|
@@ -149,7 +149,7 @@ jobs: | |
- name: Update build session with image tag for snowflake insights | ||
id: ci-set-build-output-snowflake-insights | ||
if: steps.prerun.outputs.result != 'skip' | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
with: | ||
command: "ci set-build-output --location-name=snowflake_insights --image-tag=$IMAGE_TAG-snowflake-insights" | ||
|
||
|
@@ -167,7 +167,7 @@ jobs: | |
- name: Update build session with image tag for demo_assets | ||
id: ci-set-build-output-demo-assets | ||
if: steps.prerun.outputs.result != 'skip' | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
with: | ||
command: "ci set-build-output --location-name=demo_assets --image-tag=$IMAGE_TAG-demo-assets" | ||
|
||
|
@@ -186,7 +186,7 @@ jobs: | |
- name: Deploy to Dagster Cloud | ||
id: ci-deploy | ||
if: steps.prerun.outputs.result != 'skip' | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
with: | ||
command: "ci deploy" | ||
|
||
|
@@ -212,13 +212,13 @@ jobs: | |
- name: Update PR comment for branch deployments | ||
id: ci-notify | ||
if: steps.prerun.outputs.result != 'skip' && always() | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
with: | ||
command: "ci notify --project-dir=${{ env.DAGSTER_PROJECT_DIR }}" | ||
|
||
- name: Generate summary | ||
id: ci-summary | ||
if: steps.prerun.outputs.result != 'skip' && always() | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].38 | ||
uses: dagster-io/dagster-cloud-action/actions/utils/[email protected].44 | ||
with: | ||
command: "ci status --output-format=markdown >> $GITHUB_STEP_SUMMARY" |