From 132c676ad2ccae91e717c402c8c82f3d752ff134 Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Wed, 23 Nov 2022 06:45:14 +0100 Subject: [PATCH] chore: update BuildImages workflow (#171) * chore: update BuildImages workflow Signed-off-by: Stefan Dej --- .github/workflows/BuildImages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/BuildImages.yml b/.github/workflows/BuildImages.yml index a50df9b7f..63199d2aa 100644 --- a/.github/workflows/BuildImages.yml +++ b/.github/workflows/BuildImages.yml @@ -37,7 +37,7 @@ jobs: id: set-matrix run: | ARRAY=$(find ${{ github.workspace }}/config -type f -printf '%P\n' | sed '/default/d' | sort | jq -R -s -c 'split("\n")[:-1]') - echo "::set-output name=matrix::${ARRAY}" + echo "matrix=${ARRAY}" >> $GITHUB_OUTPUT build: needs: setup @@ -65,7 +65,7 @@ jobs: cp repository/src/workspace/*.img $IMAGE.img - echo "::set-output name=image::$IMAGE" + echo "image=${IMAGE}" >> $GITHUB_OUTPUT - name: Upload failed Logfile if: failure()