From ac918f45b287e164792db40eaae279e6259d37a1 Mon Sep 17 00:00:00 2001 From: autocommit Date: Tue, 2 Jun 2026 21:16:23 -0700 Subject: [PATCH] =?UTF-8?q?release(versioning):=20=F0=9F=94=96=20Tag=20ver?= =?UTF-8?q?sion=20metadata=20with=20updated=20build=20counter=20and=20incr?= =?UTF-8?q?emented=20version=20number?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- BUILD_COUNT | 2 +- VERSION.txt | 2 +- run | 9 ++++++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/BUILD_COUNT b/BUILD_COUNT index 05cf2589..5e78f1eb 100644 --- a/BUILD_COUNT +++ b/BUILD_COUNT @@ -1 +1 @@ -201 \ No newline at end of file +203 \ No newline at end of file diff --git a/VERSION.txt b/VERSION.txt index b08507cd..0526f364 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.1.126-20260602_162321 +0.1.127-20260602_202929 diff --git a/run b/run index d58dd0f0..6cddd811 100755 --- a/run +++ b/run @@ -87,6 +87,8 @@ # ./run ci:setup-host [flags] Provision Forgejo runner on black (IaC) # Requires: FORGEJO_TOKEN env var (get from forge.black.lan → user settings → applications) # +# ./run check:prod Smoke-test live quinn.www: maintenance mode + HTTP 200s on all critical routes +# # ============================================================================= ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" @@ -123,6 +125,10 @@ case "$PREFIX" in # shellcheck source=scripts/run/ci.sh source "$ROOT_DIR/scripts/run/ci.sh" "$@" ;; + check) + # shellcheck source=scripts/run/check.sh + source "$ROOT_DIR/scripts/run/check.sh" "$@" + ;; verify) # shellcheck source=scripts/run/verify.sh source "$ROOT_DIR/scripts/run/verify.sh" @@ -143,7 +149,8 @@ case "$PREFIX" in echo " typecheck:* Typecheck commands (scripts/run/build.sh)" echo " lint:* Lint commands (scripts/run/build.sh)" echo " migrate:* Migration commands (scripts/run/build.sh)" - echo " verify Pre-push local checks (scripts/run/verify.sh)" + echo " check:* Production checks (scripts/run/check.sh)" + echo " verify Pre-push local checks (scripts/run/verify.sh)" echo " deploy:* Deploy commands (scripts/run/deploy.sh)" echo " prod:* Production bootstrap (scripts/run/prod.sh)" echo " admin:* Admin utilities (scripts/run/admin.sh)"