2 Commits

2 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
"npm": false, "npm": false,
"hooks": { "hooks": {
"after:bump": "echo Version bumped to ${version}", "after:bump": "echo Version bumped to ${version}",
"after:release": "echo SUCCESSFULLY RELEASED: v${version} > test.log" "after:release": "node ./scripts/create-gitea-release.js ${version}"
}, },
"github": false, "github": false,
@@ -28,6 +28,7 @@
} }
}, },
"files": [ "files": [
"package.json" "package.json",
"CHANGELOG.md"
] ]
} }

View File

@@ -8,7 +8,7 @@ import (
) )
func main() { func main() {
fmt.Println("Welcome to lst backend where all the fun happens.") fmt.Println("Welcome to lst backend where all the fun happens")
r := gin.Default() r := gin.Default()
r.GET("/", errorLoc) r.GET("/", errorLoc)