Skip to content

Commit

Permalink
build: add script to deploy all cc-dev sites (#4289)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoopDog committed Nov 20, 2024
1 parent ff8c4bc commit 8ca3d43
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions cc-dev-deploy-all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env bash

# List of scripts to execute
scripts=(
"./cc-anvil-catalog-dev-deploy.sh"
"./cc-data-browser.lungmap.dev.clevercanary.com-deploy.sh"
"./cc-explore.anvilproject.dev.clevercanary.com-deploy.sh"
"./cc-explore.data.humancellatlas.dev.clevercanary.com-deploy.sh"
"./cc-ma-pilot.explore.data.humancellatlas.dev.clevercanary.com-deploy.sh"
"./cc-ncpi-catalog-dev-deploy.sh"
)


# Execute each script
for script in "${scripts[@]}"; do
if [[ -x "$script" ]]; then
echo "Running $script..."
bash "$script"
echo "$script finished."
else
echo "Skipping $script: Not executable or not found."
fi
done

0 comments on commit 8ca3d43

Please sign in to comment.