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

Use tools cache for faster install times on Windows #23

Merged
merged 1 commit into from
Jul 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,29 @@ inputs:
postinstall-js:
description: Path to a postinstall.js file that would be run by NPM
required: false
setup-esy:
description: Flag to control if esy itself should be installed by the action
required: false
setup-esy-tarball:
description:
URL to esy tarball. Must be provided together with shasum and version.
Else, the action will default to latest from NPM
required: false
setup-esy-shasum:
description:
shasum of the tarball. Must be provided together with shasum and version.
Else, the action will default to latest from NPM
required: false
setup-esy-version:
description:
version of the esy tool. Must be provided together with shasum and
version. Else, the action will default to latest from NPM
required: false
setup-esy-npm-package:
description:
Alternative NPM package that contains esy. Can contain version/tag too. Eg
esy@beta.
required: false
runs:
using: node20
main: dist/index.js
Expand Down
Loading
Loading