Skip to content

Commit 0f43c44

Browse files
committed
Fix workflows GitHub actions
1 parent 5602c32 commit 0f43c44

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,9 +383,13 @@ jobs:
383383
mithril_signers: |
384384
{
385385
"1" = {
386-
type = "unverified"
386+
type = "unverified",
387387
pool_id = "pool18r62tz408lkgfu6pq5svwzkh2vslkeg6mf72qf3h8njgvzhx9ce",
388388
},
389+
"1" = {
390+
type = "verified",
391+
pool_id = "",
392+
},
389393
}
390394
terraform_backend_bucket: hydra-terraform-admin
391395
google_region: europe-west1
@@ -419,8 +423,8 @@ jobs:
419423
- name: Prepare service account credentials
420424
run: |
421425
echo '${{ env.GOOGLE_APPLICATION_CREDENTIALS}}' > ./google-application-credentials.json
422-
chmod u+x ./assets/tools/google-credentials-public-key.sh
423-
./assets/tools/google-credentials-public-key.sh ./google-application-credentials.json ./assets/ssh_keys curry
426+
chmod u+x ./assets/tools/utils/google-credentials-public-key.sh
427+
./assets/tools/utils/google-credentials-public-key.sh ./google-application-credentials.json ./assets/ssh_keys curry
424428
425429
- name: Prepare terraform variables
426430
run: |

.github/workflows/pre-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ jobs:
222222
- name: Prepare service account credentials
223223
run: |
224224
echo '${{ env.GOOGLE_APPLICATION_CREDENTIALS}}' > ./google-application-credentials.json
225-
chmod u+x ./assets/tools/google-credentials-public-key.sh
226-
./assets/tools/google-credentials-public-key.sh ./google-application-credentials.json ./assets/ssh_keys curry
225+
chmod u+x ./assets/tools/utils/google-credentials-public-key.sh
226+
./assets/tools/utils/google-credentials-public-key.sh ./google-application-credentials.json ./assets/ssh_keys curry
227227
228228
- name: Prepare terraform variables
229229
run: |

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
mithril_signers: |
137137
{
138138
"1" = {
139-
type = "unverified"
139+
type = "unverified",
140140
pool_id = "pool1zr907nmfsq5kalxdjju349nwg6f03lyfmcjfqcz52jf45gcgh03",
141141
},
142142
}
@@ -172,8 +172,8 @@ jobs:
172172
- name: Prepare service account credentials
173173
run: |
174174
echo '${{ env.GOOGLE_APPLICATION_CREDENTIALS}}' > ./google-application-credentials.json
175-
chmod u+x ./assets/tools/google-credentials-public-key.sh
176-
./assets/tools/google-credentials-public-key.sh ./google-application-credentials.json ./assets/ssh_keys curry
175+
chmod u+x ./assets/tools/utils/google-credentials-public-key.sh
176+
./assets/tools/utils/google-credentials-public-key.sh ./google-application-credentials.json ./assets/ssh_keys curry
177177
178178
- name: Prepare terraform variables
179179
run: |

0 commit comments

Comments
 (0)