diff --git a/.gitignore b/.gitignore index 623a31f..8ad6bc0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.json statik.go +release diff --git a/release.sh b/release.sh index bc46170..f6712ff 100755 --- a/release.sh +++ b/release.sh @@ -64,7 +64,7 @@ fi gh auth status if ! gh release list | cut -f3 | grep -qx "$VERSION"; then echo "Creating the $VERSION release..." - gh release create "$VERSION" release/* -d --target "$CURRENT_COMMIT_ID" -n "Released v$VERSION" --title "v$VERSION" + gh release create "$VERSION" release/* -d --target "$CURRENT_COMMIT_ID" -n "Released $VERSION" --title "$VERSION" else gh release upload "$VERSION" --clobber release/* fi