diff --git a/.github/actions/constellation_create/action.yml b/.github/actions/constellation_create/action.yml index a045332475..3dccc2a81f 100644 --- a/.github/actions/constellation_create/action.yml +++ b/.github/actions/constellation_create/action.yml @@ -181,7 +181,7 @@ runs: CSP: ${{ inputs.cloudProvider }} run: | echo "::group::Download boot logs" - CONSTELL_UID=$(yq '.uid' constellation-id.json) + CONSTELL_UID=$(yq '.infrastructure.uid' constellation-state.yaml) case $CSP in azure) AZURE_RESOURCE_GROUP=$(yq eval ".provider.azure.resourceGroup" constellation-conf.yaml) diff --git a/.github/actions/e2e_verify/action.yml b/.github/actions/e2e_verify/action.yml index 6e3c3c0c6b..54281fba53 100644 --- a/.github/actions/e2e_verify/action.yml +++ b/.github/actions/e2e_verify/action.yml @@ -39,14 +39,14 @@ runs: - name: Constellation verify shell: bash - run: constellation verify --cluster-id $(jq -r ".clusterID" constellation-id.json) --force + run: constellation verify --cluster-id $(jq -r ".clusterValues.clusterID" constellation-state.yaml) --force - name: Verify all nodes shell: bash env: KUBECONFIG: ${{ inputs.kubeconfig }} run: | - clusterID=$(jq -r ".clusterID" constellation-id.json) + clusterID=$(jq -r ".clusterValues.clusterID" constellation-state.yaml) nodes=$(kubectl get nodes -o json | jq -r ".items[].metadata.name") for node in $nodes ; do