Skip to content

Commit d3043a3

Browse files
committed
Fix condition
1 parent 6f6b567 commit d3043a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/gradle-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
steps:
7474
- name: Determine build status
7575
run: |
76-
if ${{ needs.build-latest-java.result }} == 'success' && ${{ needs.build-java-8.result }} == 'success'; then
76+
if [ "${{ needs.build-latest-java.result }}" == "success" ] && [ "${{ needs.build-java-8.result }}" == "success" ]; then
7777
exit 0
7878
else
7979
exit 1

0 commit comments

Comments
 (0)