From 9adbe04637937183f4c5b74308179b8015cbe28a Mon Sep 17 00:00:00 2001 From: Eugene Boguslavsky Date: Tue, 10 Sep 2024 11:01:01 -0700 Subject: [PATCH] Fix env variable name (#19300) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description Fix env variable name ## Test plan 👀 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 625bacc5682a6..42f76ec77e857 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -127,7 +127,7 @@ jobs: echo "PG_EXAMPLE_DATABASE_URL=postgres://postgres:root@localhost/diesel_example" >> $GITHUB_ENV - name: Install postgres (MacOS arm64) - if: ${{ matrix.os == 'macos-latest-xlarge' && env.gcloud_archive_exist == '' }} + if: ${{ matrix.os == 'macos-latest-xlarge' && env.s3_archive_exist == '' }} shell: bash env: PQ_LIB_DIR: "$(brew --prefix libpq)/lib" @@ -138,7 +138,7 @@ jobs: brew install postgresql - name: Remove unused apps (MacOS arm64) - if: ${{ matrix.os == 'macos-latest-xlarge' && env.gcloud_archive_exist == '' }} + if: ${{ matrix.os == 'macos-latest-xlarge' && env.s3_archive_exist == '' }} continue-on-error: true shell: bash run: |