diff options
author | Hailey <me@haileyok.com> | 2024-05-07 13:17:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-07 13:17:40 -0700 |
commit | 4678c4353be6232860f07f73eb66e6c958693bf7 (patch) | |
tree | 04c70d609219db0aa5fcfc20ec5c0506f52d77f6 /.github | |
parent | 0658dd053d5eaf6a0e60c1c397d3e167f8a6d29d (diff) | |
download | voidsky-4678c4353be6232860f07f73eb66e6c958693bf7.tar.zst |
typo in if/else (#3899)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/bundle-deploy-eas-update.yml | 2 |
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" |