Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test v0.1.38 => v0.1.45 in hooli #124

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
22 changes: 11 additions & 11 deletions .github/workflows/deploy-dagster-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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].45

- name: Checkout
uses: actions/checkout@v4
Expand All @@ -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].45
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].45
with:
project_dir: ${{ env.DAGSTER_PROJECT_DIR }}
dagster_cloud_yaml_path: ${{ env.DAGSTER_CLOUD_YAML_PATH }}
Expand Down Expand Up @@ -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].45
with:
command: "ci set-build-output --location-name=data-eng-pipeline --image-tag=$IMAGE_TAG-data-eng-pipeline"

Expand All @@ -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].45
with:
command: "ci set-build-output --location-name=basics --image-tag=$IMAGE_TAG-basics"

Expand All @@ -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].45
with:
command: "ci set-build-output --location-name=batch_enrichment --image-tag=$IMAGE_TAG-batch-enrichment"

Expand All @@ -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].45
with:
command: "ci set-build-output --location-name=snowflake_insights --image-tag=$IMAGE_TAG-snowflake-insights"

Expand All @@ -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].45
with:
command: "ci set-build-output --location-name=demo_assets --image-tag=$IMAGE_TAG-demo-assets"

Expand All @@ -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].45
with:
command: "ci deploy"

Expand All @@ -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].45
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].45
with:
command: "ci status --output-format=markdown >> $GITHUB_STEP_SUMMARY"
Loading