Skip to content

Commit 8b43ee2

Browse files
committed
fix: Standardize quotes in run_spicebench.yml
1 parent dea5955 commit 8b43ee2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/run_spicebench.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
etl_bucket:
2121
description: 'S3 bucket for ETL source and target data'
2222
required: true
23-
default: "spiceai-public-datasets"
23+
default: 'spiceai-public-datasets'
2424
type: string
2525
etl_source_prefix:
2626
description: 'S3 key prefix for ETL source data'
@@ -35,7 +35,7 @@ on:
3535
etl_region:
3636
description: 'AWS region for the ETL S3 bucket'
3737
required: false
38-
default: "us-east-1"
38+
default: 'us-east-1'
3939
type: string
4040
etl_endpoint:
4141
description: 'S3 endpoint URL for ETL bucket (for MinIO/LocalStack)'
@@ -217,7 +217,7 @@ jobs:
217217
ETL_NUM_STEPS: ${{ github.event.inputs.etl_num_steps || '25' }}
218218
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
219219
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
220-
RUST_LOG: "info"
220+
RUST_LOG: 'info'
221221
run: |
222222
ETL_ARGS="--etl-bucket ${ETL_BUCKET} --etl-num-steps ${ETL_NUM_STEPS}"
223223
if [ -n "${ETL_SOURCE_PREFIX}" ]; then
@@ -232,7 +232,7 @@ jobs:
232232
if [ -n "${ETL_ENDPOINT}" ]; then
233233
ETL_ARGS="${ETL_ARGS} --etl-endpoint ${ETL_ENDPOINT}"
234234
fi
235-
235+
236236
if [ "${SYSTEM_ADAPTER}" = "databricks" ]; then
237237
ADAPTER_CMD="${HOME}/.spice/bin/databricks-system-adapter"
238238
ADAPTER_ARGS="stdio"

0 commit comments

Comments
 (0)