From 4678c4353be6232860f07f73eb66e6c958693bf7 Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 7 May 2024 13:17:40 -0700 Subject: [PATCH] typo in if/else (#3899) --- .github/workflows/bundle-deploy-eas-update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bundle-deploy-eas-update.yml b/.github/workflows/bundle-deploy-eas-update.yml index 729b7bcf20..3d49404677 100644 --- a/.github/workflows/bundle-deploy-eas-update.yml +++ b/.github/workflows/bundle-deploy-eas-update.yml @@ -70,7 +70,7 @@ jobs: - name: 🕵️ Get the base commit id: base-commit run: | - if [ ${{ inputs.channel == 'production' }} ]; then + if ${{ inputs.channel == 'production' }}; then echo base-commit=$(git show-ref -s ${{ inputs.runtimeVersion }}) >> "$GITHUB_OUTPUT" else echo base-commit=${{ steps.last-successful-commit.base-commit }} >> "$GITHUB_OUTPUT"