Skip to content

Commit 3d67b16

Browse files
fix error, import io
1 parent f4f68cd commit 3d67b16

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/setup-stackql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ defaults:
1313

1414
jobs:
1515
stackql-test-matrix-no-wrapper:
16-
name: Stackql Local Run ${{ matrix.os }}
16+
name: Stackql local run on ${{ matrix.os }} without wrapper
1717
runs-on: ${{ matrix.os }}
1818
strategy:
1919
matrix:
@@ -56,7 +56,7 @@ jobs:
5656
stackql exec -i ./examples/google-example.iql --auth='{ "google": { "type": "service_account", "credentialsfilepath": "sa-key.json" }}'
5757
5858
stackql-test-matrix-with-wrapper:
59-
name: Stackql Local Run ${{ matrix.os }}
59+
name: Stackql local run on ${{ matrix.os }} with wrapper
6060
runs-on: ${{ matrix.os }}
6161
strategy:
6262
matrix:

dist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6706,6 +6706,7 @@ const os = __nccwpck_require__(2037);
67066706
const { execSync } = __nccwpck_require__(2081);
67076707
const core = __nccwpck_require__(4695);
67086708
const tc = __nccwpck_require__(3203);
6709+
const io = __nccwpck_require__(9631);
67096710

67106711
const urls = {
67116712
'linux': 'https://releases.stackql.io/stackql/latest/stackql_linux_amd64.zip',

index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const os = require('os');
44
const { execSync } = require("child_process");
55
const core = require('@actions/core');
66
const tc = require('@actions/tool-cache');
7+
const io = require('@actions/io');
78

89
const urls = {
910
'linux': 'https://releases.stackql.io/stackql/latest/stackql_linux_amd64.zip',

0 commit comments

Comments
 (0)