Script artifact generation

This commit is contained in:
2024-12-16 00:38:16 -05:00
parent 1b8207db17
commit ba7a2c47b0
3 changed files with 48 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
if [ -z "${RELEASE_TOKEN}" ]; then
echo "Please set the RELEASE_TOKEN env var."
exit 1
fi
docker build -f build.Dockerfile -t lemur-build .
docker run -it --rm -e RELEASE_TOKEN="${RELEASE_TOKEN}" -v .:/app -w /app --entrypoint bash lemur-build /app/scripts/do-release.sh