Skip to content

Commit

Permalink
Advance hooli github actions to 0.1.44 for testing
Browse files Browse the repository at this point in the history
Summary:
  • Loading branch information
gibsondan committed Aug 29, 2024
1 parent 6a35106 commit 8e3cfa5
Showing 1 changed file with 11 additions and 11 deletions.
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].44

- 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].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 }}
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].44
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].44
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].44
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].44
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].44
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].44
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].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"

0 comments on commit 8e3cfa5

Please sign in to comment.