From b2b78db762d6da76ddea33c526b20e4b943e250b Mon Sep 17 00:00:00 2001 From: Jon Lara Date: Mon, 20 May 2024 13:57:38 +0200 Subject: [PATCH] rollback: setoutput:: --- .github/workflows/build-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 2b19fd1..22bec32 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -42,13 +42,13 @@ jobs: - name: Get version from VERSION file id: get_version - run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT + run: echo "::set-output name=version::$(cat VERSION)" - name: Check if Docker image already exists id: check_image run: | VERSION_EXISTS=$(docker pull ${{ secrets.DOCKERHUB_USERNAME }}/mpp-pynq-front:${{ steps.get_version.outputs.version }} && echo "true" || echo "false") - echo "exists=$VERSION_EXISTS" >> $GITHUB_OUTPUT + echo "::set-output name=exists::$VERSION_EXISTS" - name: Build Docker image run: | @@ -68,7 +68,7 @@ jobs: - name: Get version from VERSION file id: get_version - run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT + run: echo "::set-output name=version::$(cat VERSION)" - name: Release Existence Action uses: insightsengineering/release-existence-action@v1.0.0