mirror of
https://github.com/thegeeklab/wp-s3-action.git
synced 2024-11-10 04:40:38 +00:00
Set a proper version number
This commit is contained in:
parent
46897fbdf4
commit
de3352fe18
5
main.go
5
main.go
@ -1,6 +1,7 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/Sirupsen/logrus"
|
||||
@ -8,14 +9,14 @@ import (
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
var version string // build number set at compile-time
|
||||
var build = "0" // build number set at compile-time
|
||||
|
||||
func main() {
|
||||
app := cli.NewApp()
|
||||
app.Name = "s3 sync plugin"
|
||||
app.Usage = "s3 sync plugin"
|
||||
app.Action = run
|
||||
app.Version = version
|
||||
app.Version = fmt.Sprintf("1.0.%s", build)
|
||||
app.Flags = []cli.Flag{
|
||||
cli.StringFlag{
|
||||
Name: "access-key",
|
||||
|
Loading…
Reference in New Issue
Block a user