diff --git a/.github/workflows/build-os-image.yml b/.github/workflows/build-os-image.yml index c70b398f6..f2097dacb 100644 --- a/.github/workflows/build-os-image.yml +++ b/.github/workflows/build-os-image.yml @@ -108,7 +108,7 @@ jobs: echo "bootstrapper-sha256=$(sha256sum bootstrapper | head -c 64)" echo "disk-mapper-sha256=$(sha256sum disk-mapper | head -c 64)" echo "upgrade-agent-sha256=$(sha256sum upgrade-agent | head -c 64)" - } >> "$GITHUB_OUTPUT" + } | tee "$GITHUB_OUTPUT" build-settings: name: "Determine build settings" @@ -195,7 +195,7 @@ jobs: echo "imageName=ref/${REF}/stream/${STREAM}/${IMAGE_VERSION}" echo "imageApiBasePath=constellation/v1/ref/${REF}/stream/${STREAM}/${IMAGE_VERSION}/image" echo "cliApiBasePath=constellation/v1/ref/${REF}/stream/${STREAM}/${IMAGE_VERSION}/cli" - } >> "$GITHUB_OUTPUT" + } | tee "$GITHUB_OUTPUT" if [[ "${REF}" = "-" ]] && [[ "${STREAM}" = "stable" ]]; then echo "imageNameShort=${IMAGE_VERSION}" >> "$GITHUB_OUTPUT" @@ -314,7 +314,7 @@ jobs: echo "image-vmlinuz-${{ matrix.csp }}-sha256=$(sha256sum image.vmlinuz | head -c 64)" echo "image-raw-changelog-${{ matrix.csp }}-sha256=$(sha256sum image.raw.changelog | head -c 64)" echo "image-raw-manifest-${{ matrix.csp }}-sha256=$(sha256sum image.raw.manifest | head -c 64)" - } >> "$GITHUB_OUTPUT" + } | tee "$GITHUB_OUTPUT" - name: Upload raw OS image as artifact if: always()