Skip to content

Commit

Permalink
fix: rename Docker image (#902)
Browse files Browse the repository at this point in the history
* Rename Docker image

* Fix second occurrence

* Update workflow input label to match new Docker container

* Update all references
  • Loading branch information
ntn-x2 committed Sep 5, 2024
1 parent 55aa2fb commit 3af92aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-node-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
docker-image-tag-name:
type: string
description: The tag of the kiltprotocol/prototype-chain Docker image to test against
description: The tag of the kiltprotocol/standalone-node Docker image to test against
required: true

env:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: pull image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: kilt/prototype-chain
ECR_REPOSITORY: standalone-node
IMAGE_TAG: ${{ github.event.inputs.docker-image-tag-name }}
run: |
docker pull $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
- name: pull node image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: kilt/prototype-chain
ECR_REPOSITORY: standalone-node
IMAGE_TAG: ${{ github.event.inputs.docker-image-tag-name }}
run: |
docker pull $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-polkadot-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- name: pull node image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: kilt/prototype-chain
ECR_REPOSITORY: standalone-node
IMAGE_TAG: ${{ matrix.image }}
run: |
docker pull $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
- name: pull image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: kilt/prototype-chain
ECR_REPOSITORY: standalone-node
IMAGE_TAG: ${{ matrix.image }}
run: |
docker pull $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
- name: pull node image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: kilt/prototype-chain
ECR_REPOSITORY: standalone-node
IMAGE_TAG: ${{ matrix.image }}
run: |
docker pull $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
Expand Down

0 comments on commit 3af92aa

Please sign in to comment.