typo in if/else (#3899)
parent
0658dd053d
commit
4678c4353b
|
@ -70,7 +70,7 @@ jobs:
|
||||||
- name: 🕵️ Get the base commit
|
- name: 🕵️ Get the base commit
|
||||||
id: base-commit
|
id: base-commit
|
||||||
run: |
|
run: |
|
||||||
if [ ${{ inputs.channel == 'production' }} ]; then
|
if ${{ inputs.channel == 'production' }}; then
|
||||||
echo base-commit=$(git show-ref -s ${{ inputs.runtimeVersion }}) >> "$GITHUB_OUTPUT"
|
echo base-commit=$(git show-ref -s ${{ inputs.runtimeVersion }}) >> "$GITHUB_OUTPUT"
|
||||||
else
|
else
|
||||||
echo base-commit=${{ steps.last-successful-commit.base-commit }} >> "$GITHUB_OUTPUT"
|
echo base-commit=${{ steps.last-successful-commit.base-commit }} >> "$GITHUB_OUTPUT"
|
||||||
|
|
Loading…
Reference in New Issue