This GitHub Action will install a release of the just command runner for you.
In most cases all you will need is the following in your workflow.
- uses: extractions/setup-just@v3
If you want a specific version of just
you can specify this by passing the just-version
input.
- uses: extractions/setup-just@v3 with: just-version: '1.40.0'
To avoid rate-limiting, the default Github token available to all actions, is automatically used to authenticate calls to Github. To override it, pass the input github-token
.
- uses: extractions/setup-just@v3 with: github-token: ${{ secrets.MY_GITHUB_TOKEN }}Name Required Description Type Default
just-version
no A valid NPM-style semver specification. string * github-token
no A Github token to authenticate API requests. string ${{ github.token }}
The semver specification is passed directly to NPM's semver package. This GitHub Action will install the latest matching release. Examples include
just-version: '*'
latest version (default).just-version: '1'
equivalent to >=1.0.0 <2.0.0
.just-version: '1.2'
equivalent to >=1.2.0 <2.0.0
.just-version: '1.2.3'
equivalent to =1.2.3
.just-version: '^1.2.3'
equivalent to >=1.2.3 <2.0.0
.This action is a composite action and the installation logic is done in a shared library located at @extractions/setup-crate.
Licensed under either of
at your option.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4