Skip to content

Commit df5c8ac

Browse files
author
alangenfeld
committed
debugging
1 parent f136781 commit df5c8ac

File tree

11 files changed

+26
-26
lines changed

11 files changed

+26
-26
lines changed

actions/utils/copy_template/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ inputs:
1212
description: "A string of the base image name for the deployed code location image."
1313
runs:
1414
using: "docker"
15-
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:dev"
15+
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:debugging"
1616
entrypoint: "/copy_template.sh"

actions/utils/deploy/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ outputs:
3939
description: "The Cloud deployment associated with this branch."
4040
runs:
4141
using: "docker"
42-
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:dev"
42+
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:debugging"
4343
entrypoint: "/deploy.sh"
4444
args:
4545
- ${{ inputs.pr }}

actions/utils/get_branch_deployment/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ outputs:
1515
description: "The Cloud deployment associated with this branch."
1616
runs:
1717
using: "docker"
18-
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:dev"
18+
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:debugging"
1919
entrypoint: "/get_branch_deployment.sh"

actions/utils/notify/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ inputs:
3030

3131
runs:
3232
using: "docker"
33-
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:dev"
33+
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:debugging"
3434
entrypoint: "/notify.sh"
3535
args:
3636
- ${{ inputs.pr }}

actions/utils/registry_info/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ inputs:
1212
description: "Alternative to providing organization ID. The URL of your Dagster Cloud organization."
1313
runs:
1414
using: "docker"
15-
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:dev"
15+
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:debugging"
1616
entrypoint: "/registry_info.sh"

actions/utils/run/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ outputs:
4242
description: "The ID of the launched run."
4343
runs:
4444
using: "docker"
45-
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:dev"
45+
image: "docker://ghcr.io/dagster-io/dagster-cloud-action:debugging"
4646
entrypoint: "/run.sh"
4747
args:
4848
- ${{ inputs.pr }}

gitlab/dbt/serverless-ci-dbt.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ deploy-branch:
1212
stage: deploy
1313
rules:
1414
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
15-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
15+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
1616
script:
1717
# first create the branch deployment
1818
- export PR_TIMESTAMP=$(git log -1 --format='%cd' --date=unix)
@@ -51,7 +51,7 @@ deploy-branch:
5151

5252
close_branch:
5353
stage: deploy
54-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
54+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
5555
when: manual
5656
only:
5757
- merge_requests
@@ -76,7 +76,7 @@ deploy:
7676
stage: deploy
7777
rules:
7878
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
79-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
79+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
8080
script:
8181
# install dbt package
8282
- pip install pip --upgrade

gitlab/hybrid-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ workflow:
2929

3030
initialize:
3131
stage: setup
32-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
32+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
3333
script:
3434
- export
3535
- dagster-cloud ci check --project-dir=$DAGSTER_PROJECT_DIR --dagster-cloud-yaml-path=$DAGSTER_CLOUD_YAML_PATH
@@ -75,7 +75,7 @@ deploy-docker:
7575
dependencies:
7676
- build-image
7777
- initialize
78-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
78+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
7979
script:
8080
- dagster-cloud ci set-build-output --image-tag=$IMAGE_TAG
8181
- dagster-cloud ci deploy
@@ -87,7 +87,7 @@ deploy-docker-branch:
8787
dependencies:
8888
- build-image
8989
- initialize
90-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
90+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
9191
script:
9292
- dagster-cloud ci set-build-output --image-tag=$IMAGE_TAG
9393
- dagster-cloud ci deploy
@@ -97,7 +97,7 @@ deploy-docker-branch:
9797

9898
close-branch:
9999
stage: deploy
100-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
100+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
101101
when: manual
102102
only:
103103
- merge_requests

gitlab/serverless-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ deploy-branch:
99
stage: deploy
1010
rules:
1111
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
12-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
12+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
1313
script:
1414
# first create the branch deployment
1515
- export PR_TIMESTAMP=$(git log -1 --format='%cd' --date=unix)
@@ -37,7 +37,7 @@ deploy-branch:
3737

3838
close_branch:
3939
stage: deploy
40-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
40+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
4141
when: manual
4242
only:
4343
- merge_requests
@@ -62,6 +62,6 @@ deploy:
6262
stage: deploy
6363
rules:
6464
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
65-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
65+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
6666
script:
6767
- /gitlab_action/deploy.py ./dagster_cloud.yaml

gitlab/serverless-legacy-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ workflow:
1010

1111
parse-workspace:
1212
stage: setup
13-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
13+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
1414
script:
1515
- python /gitlab_action/parse_workspace.py dagster_cloud.yaml >> build.env
1616
- cp /Dockerfile.template .
@@ -23,7 +23,7 @@ parse-workspace:
2323

2424
fetch-registry-info:
2525
stage: setup
26-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
26+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
2727
script: dagster-cloud serverless registry-info --url $DAGSTER_CLOUD_URL/prod --api-token $DAGSTER_CLOUD_API_TOKEN | grep '=' >> registry.env
2828
artifacts:
2929
reports:
@@ -53,7 +53,7 @@ deploy-docker:
5353
- build-image
5454
- parse-workspace
5555
- fetch-registry-info
56-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
56+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
5757
script:
5858
- dagster-cloud workspace add-location
5959
--url $DAGSTER_CLOUD_URL/prod
@@ -74,7 +74,7 @@ deploy-docker-branch:
7474
- build-image
7575
- parse-workspace
7676
- fetch-registry-info
77-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
77+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
7878
script:
7979
- export PR_TIMESTAMP=$(git log -1 --format='%cd' --date=unix)
8080
- export PR_MESSAGE=$(git log -1 --format='%s')
@@ -109,7 +109,7 @@ deploy-docker-branch:
109109

110110
close_branch:
111111
stage: deploy
112-
image: ghcr.io/dagster-io/dagster-cloud-action:dev
112+
image: ghcr.io/dagster-io/dagster-cloud-action:debugging
113113
when: manual
114114
only:
115115
- merge_requests

0 commit comments

Comments
 (0)