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
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Authentication to StackQL providers is done via environment variables source fro
13
13
The following example demonstrate the use of the `stackql/setup-stackql` action in a GitHub Actions workflow, demonstrating how to use the action to install the `stackql` CLI and then use it to execute a StackQL query.
14
14
15
15
### GitHub Example
16
-
Check the "Use GitHub Provider" step in [setup-stackql.yml](.github/workflows/setup-stackql.yml) for the working example, for more information on the GitHub provider for StackQL, see the [GitHub Provider Docs](https://registry.stackql.io/github).
16
+
Check the "Use GitHub Provider" step in [setup-stackql-test.yml](.github/workflows/setup-stackql-test.yml) for the working example, for more information on the GitHub provider for StackQL, see the [GitHub Provider Docs](https://registry.stackql.io/github).
17
17
18
18
```yaml
19
19
- name: setup StackQL
@@ -30,7 +30,7 @@ Check the "Use GitHub Provider" step in [setup-stackql.yml](.github/workflows/se
30
30
```
31
31
32
32
### Google Example
33
-
Check the "Use Google Provider" step in [setup-stackql.yml](.github/workflows/setup-stackql.yml) for the working example, for more information on the Google provider for StackQL, see the [Google Provider Docs](https://registry.stackql.io/google).
33
+
Check the "Use Google Provider" step in [setup-stackql-test.yml](.github/workflows/setup-stackql-test.yml) for the working example, for more information on the Google provider for StackQL, see the [Google Provider Docs](https://registry.stackql.io/google).
34
34
35
35
```yaml
36
36
- name: setup StackQL
@@ -46,14 +46,14 @@ Check the "Use Google Provider" step in [setup-stackql.yml](.github/workflows/se
46
46
```
47
47
48
48
## Inputs
49
-
- `use_wrapper` - (optional) Whether to install a wrapper to wrap subsequent calls of
49
+
- __`use_wrapper`__ - (optional) Whether to install a wrapper to wrap subsequent calls of
50
50
the `stackql` binary and expose its STDOUT, STDERR, and exit code as outputs
51
51
named `stdout`, `stderr`, and `exitcode` respectively. Defaults to `false`.
52
52
53
53
## Outputs
54
54
This action does not configure any outputs directly. However, when you set the `use_wrapper` input
55
55
to `true`, the following outputs are available for subsequent steps that call the `stackql` binary:
56
56
57
-
- `stdout`- The STDOUT stream of the call to the `stackql` binary.
58
-
- `stderr`- The STDERR stream of the call to the `stackql` binary.
59
-
- `exitcode`- The exit code of the call to the `stackql` binary.
57
+
- __`stdout`__ - The STDOUT stream of the call to the `stackql` binary.
58
+
- __`stderr`__ - The STDERR stream of the call to the `stackql` binary.
59
+
- __`exitcode`__ - The exit code of the call to the `stackql` binary.
0 commit comments