ci: replace standard-version with release please (#5533)

This commit is contained in:
Henrique Dias
2025-11-13 09:34:59 +01:00
committed by GitHub
parent f11fc37409
commit 6eb7b4b8ec
8 changed files with 30 additions and 654 deletions

View File

@@ -1,14 +0,0 @@
#!/usr/bin/env bash
set -e
if ! [ -x "$(command -v standard-version)" ]; then
echo "standard-version is not installed. please run 'npm i -g standard-version'"
exit 1
fi
standard-version --dry-run --skip
read -p "Continue (y/n)? " -n 1 -r
echo ;
if [[ $REPLY =~ ^[Yy]$ ]]; then
standard-version -s ;
fi