mirror of
https://github.com/thegeeklab/wp-gitea-release.git
synced 2024-11-22 00:00:41 +00:00
Fix files
configuration key error
Currently the `files` option doesn't have any effect (i.e. no asset is published on GitHub). This patch fixes the corresponding typo in `main.go`. Closes: #16
This commit is contained in:
parent
db2a647af4
commit
140d51ae9a
2
main.go
2
main.go
@ -108,7 +108,7 @@ func run(c *cli.Context) error {
|
|||||||
},
|
},
|
||||||
Config: Config{
|
Config: Config{
|
||||||
APIKey: c.String("api-key"),
|
APIKey: c.String("api-key"),
|
||||||
Files: c.StringSlice("api-key"),
|
Files: c.StringSlice("files"),
|
||||||
FileExists: c.String("file-exists"),
|
FileExists: c.String("file-exists"),
|
||||||
Checksum: c.StringSlice("checksum"),
|
Checksum: c.StringSlice("checksum"),
|
||||||
Draft: c.Bool("draft"),
|
Draft: c.Bool("draft"),
|
||||||
|
Loading…
Reference in New Issue
Block a user