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
The `stackql/setup-stackql` action is a JavaScript action that sets up StackQL CLI in your GitHub Actions workflow by:
4
6
5
7
- Downloading a latest Stackql CLI and adding it to the `PATH`.
6
8
- Setup AUTH env var in the Github Action
7
9
10
+
This action can be run on `ubuntu-latest`, `windows-latest`, and `macos-latest` GitHub Actions runners, and will install and expose the latest version of the `stackql` CLI on the runner environment.
11
+
8
12
# Auth
9
13
[Learn more](https://stackql.io/docs/getting-started/authenticating) about authentication setup when running stackql
description: 'Sets up StackQL CLI in your GitHub Actions workflow.'
3
-
author: 'Yuncheng Yang, StackQL'
4
-
inputs:
5
-
use_wrapper:
6
-
description: 'Whether or not to install a wrapper to wrap subsequent calls of the `stackql` binary and expose its STDOUT, STDERR, and exit code as outputs named `stdout`, `stderr`, and `exitcode` respectively. Defaults to `true`.'
7
-
default: 'true'
8
-
required: false
9
-
2
+
description: 'Sets up the StackQL CLI in your GitHub Actions workflow.'
3
+
author: 'Yuncheng Yang, StackQL Studios'
4
+
inputs: {}
5
+
# use_wrapper:
6
+
# description: 'Whether or not to install a wrapper to wrap subsequent calls of the `stackql` binary and expose its STDOUT, STDERR, and exit code as outputs named `stdout`, `stderr`, and `exitcode` respectively. Defaults to `true`.'
0 commit comments