From 0a1583fddab45ef9a84e4be1804d0d09ff2c735d Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 8 Jan 2023 20:34:35 +0100 Subject: [PATCH] Lint --- .github/workflows/onpush_builder.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/onpush_builder.yaml b/.github/workflows/onpush_builder.yaml index 9c4d88899..e82e1c654 100644 --- a/.github/workflows/onpush_builder.yaml +++ b/.github/workflows/onpush_builder.yaml @@ -72,14 +72,14 @@ jobs: run: | # shellcheck disable=SC2157,SC2086 if [[ "${{ steps.info.outputs.architectures }}" =~ ${{ matrix.arch }} ]]; then - echo "::set-output name=build_arch::true"; - echo "::set-output name=image::$(echo ${{ steps.info.outputs.image }} | cut -d'/' -f3)"; + echo "build_arch=true"; + echo "image=$(echo ${{ steps.info.outputs.image }} | cut -d'/' -f3)"; if [[ -z "$HEAD" ]] && [[ "${{ github.event_name }}" == "push" ]]; then echo "BUILD_ARGS=" >> $GITHUB_ENV; fi else echo "${{ matrix.arch }} is not a valid arch for ${{ matrix.addon }}, skipping build"; - echo "::set-output name=build_arch::false"; + echo "build_arch=false"; fi - name: Login to GitHub Container Registry if: env.BUILD_ARGS != '--test'