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.
This commit is contained in:
Otto Bittner 2023-02-14 09:15:01 +01:00
parent 449d0e5b7a
commit f97d351ad2
2 changed files with 2 additions and 2 deletions

View File

@ -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')

View File

@ -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