sqlfluff / sqlfluff-online

An online SQL formatter, via SQLFluff.
https://online.sqlfluff.com/
34 stars 14 forks source link

Auto drop old app versions on deploy #305

Closed nolanbconaway closed 1 year ago

nolanbconaway commented 1 year ago

Fixes #304

App engine stores 32 versions as a maximum; and each commit to master here will add one. Even the weekly dependabot PRs do this, so it doesn't take long to hit the limit.

THis adds a new step in the deploy action to delete all but the 5 newest versions. I keep 5 in case we want to roll back and because its basically free.

nolanbconaway commented 1 year ago

thx alan