Skip to content

Commit 4d09532

Browse files
committed
Support custom Cardano Docker image registry in CI
1 parent bbbea78 commit 4d09532

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/actions/deploy-terraform-infrastructure/action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ inputs:
2020
cardano_node_version:
2121
description: Cardano node version.
2222
required: true
23+
cardano_node_docker_registry:
24+
description: Cardano node Docker image registry.
25+
required: false
26+
default: "inputoutput/cardano-node"
2327
google_region:
2428
description: Google Cloud region name.
2529
required: true
@@ -141,6 +145,7 @@ runs:
141145
environment_prefix = "${{ inputs.environment_prefix }}"
142146
cardano_network = "${{ inputs.cardano_network }}"
143147
cardano_image_id = "${{ inputs.cardano_node_version }}"
148+
cardano_image_registry = "${{ inputs.cardano_node_docker_registry }}"
144149
google_region = "${{ inputs.google_region }}"
145150
google_zone = "${{ inputs.google_zone }}"
146151
google_machine_type = "${{ inputs.google_machine_type }}"

.github/workflows/test-deploy-network.yml

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ jobs:
106106
environment: ${{ matrix.environment }}
107107
cardano_network: ${{ matrix.cardano_network }}
108108
cardano_node_version: ${{ vars.CARDANO_NODE_VERSION }}
109+
cardano_node_docker_registry: ${{ vars.CARDANO_NODE_DOCKER_REGISTRY }}
109110
google_region: ${{ matrix.google_region }}
110111
google_zone: ${{ matrix.google_zone }}
111112
google_machine_type: ${{ matrix.google_machine_type }}

0 commit comments

Comments
 (0)