Document secret-file in README and add example

This commit is contained in:
Strajk
2020-07-21 10:10:23 +02:00
父節點 85a47838fd
當前提交 4864ece107
共有 2 個文件被更改,包括 2 次插入1 次删除

查看文件

@@ -84,6 +84,7 @@ act -v
-q, --quiet disable logging of output from steps
-r, --reuse reuse action containers to maintain state
-s, --secret stringArray secret to make available to actions with optional value (e.g. -s mysecret=foo or -s mysecret)
--secret-file file with list of secrets to read from (e.g. --secret-file .secrets)
-v, --verbose verbose output
--version version for act
-w, --watch watch the contents of the local repo and run when files change

查看文件

@@ -47,7 +47,7 @@ func Execute(ctx context.Context, version string) {
rootCmd.PersistentFlags().BoolP("verbose", "v", false, "verbose output")
rootCmd.PersistentFlags().BoolVarP(&input.noOutput, "quiet", "q", false, "disable logging of output from steps")
rootCmd.PersistentFlags().BoolVarP(&input.dryrun, "dryrun", "n", false, "dryrun mode")
rootCmd.PersistentFlags().StringVarP(&input.secretfile, "secret-file", "", "", "file with list of secrets to read from")
rootCmd.PersistentFlags().StringVarP(&input.secretfile, "secret-file", "", "", "file with list of secrets to read from (e.g. --secret-file .secrets)")
rootCmd.PersistentFlags().StringVarP(&input.envfile, "env-file", "", ".env", "environment file to read and use as env in the containers")
rootCmd.SetArgs(args())