fix: pin nixpacks version

This commit is contained in:
Mauricio Siu
2024-12-10 02:38:50 -06:00
parent 83b3176f6f
commit bc55fde6d6
3 changed files with 7 additions and 4 deletions

View File

@@ -522,7 +522,8 @@ const installNixpacks = () => `
if command_exists nixpacks; then
echo "Nixpacks already installed ✅"
else
VERSION=1.28.1 bash -c "$(curl -fsSL https://nixpacks.com/install.sh)"
export NIXPACKS_VERSION=1.29.1
bash -c "$(curl -fsSL https://nixpacks.com/install.sh)"
echo "Nixpacks version 1.28.1 installed ✅"
fi
`;