2021-03-26 19:04:10 +02:00
2021-03-26 18:58:23 +02:00
2020-10-08 22:59:30 +02:00
2020-05-02 21:11:52 +02:00
2020-04-24 14:46:02 +02:00
2020-05-02 22:22:05 +02:00
2020-05-02 22:22:05 +02:00
2021-03-26 19:04:10 +02:00
2021-03-26 19:04:10 +02:00
2020-04-24 14:46:02 +02:00

setup-just action

build

This GitHub Action will install the latest release of the just command runner for you.

Usage

Inputs

Name Required Description Type Default
just-version no A valid NPM-style semver specification. string *

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: '0.8' equivalent to >=0.8.0 <0.9.0.
  • just-version: '0.8.x' equivalent to >=0.8.0 <0.9.0.
  • just-version: '0.8.3' equivalent to =0.8.3.
  • just-version: '^0.8.3' equivalent to >=0.8.3 <0.9.0.

Basic example

Add the following to your workflow.

- uses: extractions/setup-just@v1
  with:
    just-version: 0.8
  env:
    # this is not required but add it if you get any rate limiting issues
    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

License

Licensed under either of

at your option.

S
Description
mirror of github.com/extractions/setup-just
Readme
642 KiB
Languages
Just 100%