Skip to content
Snippets Groups Projects
Commit 268b882d authored by Juhani Ränkimies's avatar Juhani Ränkimies
Browse files

fix: add hidden command to get version correctly to documentation

fixes #14
parent d782ba58
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -92,7 +92,7 @@ pages:
script:
- sed -i 's/GA_ID/'"$GA"'/' site/config.toml
- mkdir -p site/layouts/shortcodes
- ./release -v > site/layouts/shortcodes/version.html
- ./release short-version > site/layouts/shortcodes/version.html
- ./release help > site/layouts/shortcodes/help.html
- ./release help next-version > site/layouts/shortcodes/next-version.html
- ./release help changelog > site/layouts/shortcodes/changelog.html
......
......@@ -32,6 +32,11 @@ var (
version string
)
func shortVersion(c *cli.Context) error {
fmt.Println(version)
return nil
}
func addDownload(c *cli.Context) error {
tag := c.GlobalString("commit-tag")
if len(tag) == 0 {
......@@ -306,6 +311,12 @@ func main() {
},
},
},
{
Name: "short-version",
Usage: "print just the version number",
Action: shortVersion,
Hidden: true,
},
}
err := app.Run(os.Args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment