Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run to index #67

Merged
merged 3 commits into from Feb 9, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/integration-tests.yml
Expand Up @@ -22,6 +22,7 @@ jobs:
echo $PR_BASE_REF
if [[ $PR_BASE_REF != releases/* ]]; then
npm install
npm i -g @vercel/ncc
npm run build
fi
- name: Setup helm
Expand Down
16 changes: 8 additions & 8 deletions action.yml
@@ -1,15 +1,15 @@
name: 'Helm tool installer'
description: 'Install a specific version of helm binary. Acceptable values are latest or any semantic version string like 1.15.0'
name: "Helm tool installer"
description: "Install a specific version of helm binary. Acceptable values are latest or any semantic version string like 1.15.0"
inputs:
version:
description: 'Version of helm'
description: "Version of helm"
required: true
default: 'latest'
default: "latest"
outputs:
helm-path:
description: 'Path to the cached helm binary'
description: "Path to the cached helm binary"
branding:
color: 'blue'
color: "blue"
runs:
using: 'node12'
main: 'lib/run.js'
using: "node12"
main: "lib/index.js"
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -13,9 +13,9 @@
"@octokit/graphql": "^4.6.1",
"semver": "^6.1.0"
},
"main": "lib/run.js",
"main": "lib/index.js",
"scripts": {
"build": "tsc --outDir ./lib --rootDir ./src",
"build": "ncc build src/run.ts -o lib",
"test": "jest",
"test-coverage": "jest --coverage"
},
Expand All @@ -26,4 +26,4 @@
"@types/jest": "^25.2.2",
"ts-jest": "^25.5.1"
}
}
}