setup-nextflow/action.yml

31 lines
1,016 B
YAML
Raw Normal View History

name: "Setup Nextflow"
description: "Install Nextflow and add it to the PATH"
author: "nf-core"
2022-06-13 17:41:50 +00:00
inputs:
version:
description: "The Nextflow version to download (if necessary) and use. Example: 21.10.3"
2022-06-13 17:41:50 +00:00
required: false
default: "latest-stable"
2022-06-13 17:41:50 +00:00
all:
description: "Whether to install every Nextflow release via the '-all' distribution."
required: false
default: false
token:
description: "GitHub token to access the GitHub Releases API. The default token should be sufficient for all use cases."
2022-06-13 17:41:50 +00:00
required: false
default: ${{ github.token }}
cooldown:
description: "Time (in seconds) to wait before querying the GitHub Releases API in the case of hitting a rate limit."
required: false
default: "60"
max-retries:
description: "The number of times that to try querying the GitHub Releases API in case of a rate-limited failure."
required: false
default: "3"
2022-06-13 17:41:50 +00:00
runs:
using: "node16"
main: "dist/index.js"
2022-06-13 17:41:50 +00:00
branding:
icon: "shuffle"
color: "green"