about summary refs log tree commit diff
path: root/.github/workflows
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-05-07 13:17:40 -0700
committerGitHub <noreply@github.com>2024-05-07 13:17:40 -0700
commit4678c4353be6232860f07f73eb66e6c958693bf7 (patch)
tree04c70d609219db0aa5fcfc20ec5c0506f52d77f6 /.github/workflows
parent0658dd053d5eaf6a0e60c1c397d3e167f8a6d29d (diff)
downloadvoidsky-4678c4353be6232860f07f73eb66e6c958693bf7.tar.zst
typo in if/else (#3899)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/bundle-deploy-eas-update.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/bundle-deploy-eas-update.yml b/.github/workflows/bundle-deploy-eas-update.yml
index 729b7bcf2..3d4940467 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"