release(versioning): 🔖 Tag version metadata with updated build counter and incremented version number
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
a881df6b6e
commit
ac918f45b2
3 changed files with 10 additions and 3 deletions
|
|
@ -1 +1 @@
|
|||
201
|
||||
203
|
||||
|
|
@ -1 +1 @@
|
|||
0.1.126-20260602_162321
|
||||
0.1.127-20260602_202929
|
||||
|
|
|
|||
9
run
9
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)"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue