Skip to content

Commit f0d7307

Browse files
committed
chore: Fix CI
1 parent 4940cac commit f0d7307

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dependency_compatibility_test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
java-version: '21'
2727
distribution: 'temurin'
2828
cache: maven
29-
- run: echo "DEPENDENCIES_LIST=${{ github.event.inputs.dependencies-list || '' }}" >> $GITHUB_ENV
29+
- run: echo "DEPENDENCIES_LIST=${{ github.event.inputs.dependencies-list || '' }}" >> "$GITHUB_ENV"
3030
# Set up the for the CI
3131
- name: Install sdk-platform-java's modules
3232
# gapic-generator-java requires Java 8 and is irrelevant for this CI
@@ -36,7 +36,7 @@ jobs:
3636
- name: Perform Dependency Compatibility Testing
3737
shell: bash
3838
run: |
39-
if [[ -z ${{ env.DEPENDENCIES_LIST }} ]]
39+
if [[ ${{ env.DEPENDENCIES_LIST }} == '' ]]; then
4040
./.github/scripts/test_dependency_compatibility.sh -f dependencies.txt
4141
else
4242
./.github/scripts/test_dependency_compatibility.sh -l ${{ env.DEPENDENCIES_LIST }}
@@ -58,7 +58,7 @@ jobs:
5858
- name: Perform Dependency Compatibility Testing (Showcase)
5959
shell: bash
6060
run: |
61-
if [[ -z ${{ env.DEPENDENCIES_LIST }} ]]
61+
if [[ ${{ env.DEPENDENCIES_LIST }} == '' ]]; then
6262
../.github/scripts/test_dependency_compatibility.sh -f ../dependencies.txt
6363
else
6464
../.github/scripts/test_dependency_compatibility.sh -l ${{ env.DEPENDENCIES_LIST }}

0 commit comments

Comments
 (0)