fix: correct YAML syntax in Dremio CI workflow

Use multi-line run command with pipe operator (|) instead of
inline command with || operator to avoid YAML parsing errors.
The || operator was causing 'mapping values are not allowed here'
syntax errors in the YAML parser.
This commit is contained in:
Chris Lu
2026-05-01 17:22:10 -07:00
parent b9dc84d248
commit a3eb4060e7
+2 -1
View File
@@ -213,7 +213,8 @@ jobs:
uses: docker/setup-buildx-action@v4
- name: Pre-pull Dremio image
run: docker pull dremio/dremio:latest || echo "Warning: Failed to pre-pull Dremio image, will try at runtime"
run: |
docker pull dremio/dremio:latest || echo 'Warning: Failed to pre-pull Dremio image, will try at runtime'
continue-on-error: true
- name: Run go mod tidy