You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-6Lines changed: 20 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,10 @@ Authentication to StackQL providers is done via environment variables source fro
11
11
-`query_file_path` - stackql query file to execute **(need to supply either `query` or `query_file_path`)**
12
12
-`data_file_path` - (optional) path to data file to pass to the stackql query preprocessor (`json` or `jsonnet`)
13
13
-`vars` - (optional) comma delimited list of variables to pass to the stackql query preprocessor (supported with `jsonnet` config blocks or `jsonnet` data files only), accepts `var1=val1,var2=val2`, can be used to source environment variables into stackql queries
14
-
-`query_output` - (optional) output format of the stackql exec result, accepts `table`, `csv`, `json`, defaults to `json`
14
+
-`query_output` - (optional) output format of the stackql exec result, accepts `table`, `csv`, `json` and `text`, defaults to `json`
15
15
-`auth_obj_path` - (optional) the path of json file that stores stackql AUTH string **(only required when using non-standard environment variable names)**
16
16
-`auth_str` - (optional) stackql AUTH string **(only required when using non-standard environment variable names)**
17
-
17
+
-`is_command` - (optional defaults to 'false') set to true if the stackql execution is a command that does not return data
18
18
19
19
## Outputs
20
20
This action uses [setup-stackql](https://github.com/marketplace/actions/stackql-studio-setup-stackql), with use_wrapper set
@@ -27,15 +27,29 @@ to `true`, `stdout` and `stderr` are set to `exec-result` and `exec-error`
27
27
28
28
### Inline `stackql` query example
29
29
30
+
this is an example of a command (that does not return data):
0 commit comments