mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-08-20 06:07:05 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user