Skip to content

Commit

Permalink
fix merge-json-config args #181
Browse files Browse the repository at this point in the history
  • Loading branch information
JavierCladellas committed Dec 12, 2024
1 parent 82b4dd5 commit d61ca70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Merge stage configs
run: |
source .venv/bin/activate
merge-json-configs -fp ./tmp/**/website_config.json -o ./configs_tmp/stage_config.json -u
merge-json-configs -fp "./tmp/**/website_config.json" -o ./configs_tmp/stage_config.json -u
- name: Update Stage Config
run: |
source .venv/bin/activate
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Merge stage and prod configs
run: |
source .venv/bin/activate
merge-json-configs -fp ./configs_tmp/**/*.json -o ./configs_tmp/website_config.json
merge-json-configs -fp "./configs_tmp/**/*.json" -o ./configs_tmp/website_config.json
- name: Upload New Website config
run: |
source .venv/bin/activate
Expand Down
2 changes: 1 addition & 1 deletion netlify-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ source ./girder_deploy_config.sh
if [[ $HEAD == *"new-benchmark"* ]]; then
echo "Downloading Staging benchmarks"
girder-download -gid $staging_folder_id -o ./tmp/ -d
merge-json-configs -fp ./tmp/**/website_config.json -o ./tmp/website_config.json -u
merge-json-configs -fp "./tmp/**/website_config.json" -o ./tmp/website_config.json -u
else
echo "Downloading Production benchmarks"
girder-download -gid $production_website_config_id -o ./tmp/ -fn website_config.json
Expand Down

0 comments on commit d61ca70

Please sign in to comment.