chore(scripts): handle missing VERSION file in poetry version script
Some checks failed
Auto Changelog & (Release) / release (push) Successful in 13s
Build and Publish nightly package / build-and-publish (push) Failing after 1m25s

This commit is contained in:
2025-09-12 17:31:33 +02:00
parent 15c5b0398a
commit 0337271590

View File

@@ -1,6 +1,10 @@
#!/bin/bash
BASE_VERSION=$(cat VERSION)
if [[ -f VERSION ]]; then
BASE_VERSION=$(cat VERSION)
else
BASE_VERSION="0.1.0"
fi
NIGHTLY_SUFFIX=""
if [[ "$1" == "nightly" ]]; then