seedcase-project / seedcase-sprout

Upload your research data to formally structure it for better, more reliable, and easier research.
https://sprout.seedcase-project.org/
MIT License
0 stars 0 forks source link

Split out dependency between delete env and fly deploy with lint and test #534

Open lwjohnst86 opened 4 months ago

lwjohnst86 commented 4 months ago

Split out so there is no dependency of lint and test from environment and fly deploy deletion

lwjohnst86 commented 2 months ago

I've used this command so far to delete the environments:

gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/seedcase-project/seedcase-sprout/environments --jq '.environments.[].name' | while read line ; do gh api --method DELETE -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/seedcase-project/seedcase-sprout/environments/$line ; done