Skip to content

Commit 17d8205

Browse files
committed
Add 'release-mainnet' deployment to CD
1 parent d0ff9da commit 17d8205

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.github/workflows/release.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
strategy:
114114
fail-fast: false
115115
matrix:
116-
environment: [ release-preprod ]
116+
environment: [ release-preprod, release-mainnet ]
117117
include:
118118
- environment: release-preprod
119119
environment_prefix: release
@@ -136,7 +136,26 @@ jobs:
136136
google_region: europe-west1
137137
google_zone: europe-west1-b
138138
google_machine_type: e2-highmem-2
139+
google_compute_instance_boot_disk_size: 200
139140
google_compute_instance_data_disk_size: 250
141+
- environment: release-mainnet
142+
environment_prefix: release
143+
cardano_network: mainnet
144+
mithril_api_domain: api.mithril.network
145+
mithril_protocol_parameters: |
146+
{
147+
k = 2422
148+
m = 20973
149+
phi_f = 0.20
150+
}
151+
mithril_signers: |
152+
{}
153+
terraform_backend_bucket: mithril-terraform-prod
154+
google_region: europe-west1
155+
google_zone: europe-west1-b
156+
google_machine_type: e2-highmem-8
157+
google_compute_instance_boot_disk_size: 250
158+
google_compute_instance_data_disk_size: 1000
140159

141160
runs-on: ubuntu-22.04
142161

@@ -183,6 +202,7 @@ jobs:
183202
google_region = "${{ matrix.google_region }}"
184203
google_zone = "${{ matrix.google_zone }}"
185204
google_machine_type = "${{ matrix.google_machine_type }}"
205+
google_compute_instance_boot_disk_size = "${{ matrix.google_compute_instance_boot_disk_size }}"
186206
google_compute_instance_data_disk_size = "${{ matrix.google_compute_instance_data_disk_size }}"
187207
google_service_credentials_json_file = "./google-application-credentials.json"
188208
mithril_api_domain = "${{ matrix.mithril_api_domain }}"

0 commit comments

Comments
 (0)