Skip to content

Commit

Permalink
typo in if/else (#3899)
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok authored May 7, 2024
1 parent 0658dd0 commit 4678c43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bundle-deploy-eas-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 4678c43

Please sign in to comment.