Skip to content

Commit dc8e429

Browse files
committed
fix
1 parent 56592e0 commit dc8e429

File tree

4 files changed

+45
-23
lines changed

4 files changed

+45
-23
lines changed

dist/index.js

Lines changed: 39 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"lint": "eslint src/**/*.ts",
1212
"package": "ncc build --source-map --license licenses.txt",
1313
"test": "jest",
14-
"all": "npm run build && npm run format && npm run lint && npm run package"
14+
"all": "npm run build && npm run package"
1515
},
1616
"keywords": [],
1717
"homepage": "https://github.com/settlemint/setup-op",

src/main.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import core from '@actions/core'
2-
import tc from '@actions/tool-cache'
3-
import os from 'os'
1+
import * as core from '@actions/core'
2+
import * as tc from '@actions/tool-cache'
3+
import * as os from 'os'
44

55
function mapArch(arch: string): string {
66
const mappings: Record<string, string> = {
@@ -43,6 +43,7 @@ export default async function setup(): Promise<void> {
4343
core.getInput('service-account-token')
4444
)
4545
} catch (e) {
46+
console.log(e)
4647
core.setFailed(e as Error)
4748
}
4849
}

0 commit comments

Comments
 (0)