mirror of
https://github.com/extractions/setup-just
synced 2026-09-07 20:04:00 +00:00
22 lines
568 B
YAML
22 lines
568 B
YAML
name: 'Setup just'
|
|
author: 'Ross MacArthur'
|
|
description: 'Install the just command runner'
|
|
branding:
|
|
icon: 'play'
|
|
color: 'blue'
|
|
inputs:
|
|
just-version:
|
|
description: 'A valid semver specifier of the just version to install'
|
|
github-token:
|
|
description: 'Github token to use to authenticate downloads'
|
|
required: false
|
|
default: ${{ github.token }}
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: extractions/setup-crate@v1
|
|
with:
|
|
repo: casey/just
|
|
version: ${{ inputs.just-version }}
|
|
github-token: ${{ inputs.github-token }}
|