From f97d351ad2e4817876c9bb0c2fddf812cbd35d05 Mon Sep 17 00:00:00 2001 From: Otto Bittner Date: Tue, 14 Feb 2023 09:15:01 +0100 Subject: [PATCH] ci: add force flag to remaining constellation cmds In the CI most configs use prerelease images. Config validation prevents this. Therefore we need to use the force flag for now. --- .github/actions/e2e_recover/action.yml | 2 +- .github/actions/e2e_verify/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/e2e_recover/action.yml b/.github/actions/e2e_recover/action.yml index ce4182582..71aeced7d 100644 --- a/.github/actions/e2e_recover/action.yml +++ b/.github/actions/e2e_recover/action.yml @@ -40,7 +40,7 @@ runs: start_time=$(date +%s) recovered=0 while true; do - output=$(constellation recover --master-secret=${{ inputs.masterSecret }}) + output=$(constellation recover --master-secret=${{ inputs.masterSecret }} --force) if echo "$output" | grep -q "Pushed recovery key."; then echo "$output" i=$(echo "$output" | grep -o "Pushed recovery key." | wc -l | sed 's/ //g') diff --git a/.github/actions/e2e_verify/action.yml b/.github/actions/e2e_verify/action.yml index bd53153f8..14f5cb73f 100644 --- a/.github/actions/e2e_verify/action.yml +++ b/.github/actions/e2e_verify/action.yml @@ -31,4 +31,4 @@ runs: - name: Constellation verify shell: bash - run: constellation verify --cluster-id $(jq -r ".clusterID" constellation-id.json) + run: constellation verify --cluster-id $(jq -r ".clusterID" constellation-id.json) --force