2022-11-15 15:57:34 +00:00
|
|
|
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:
|
2022-11-15 15:57:34 +00:00
|
|
|
description: "The Nextflow version to download (if necessary) and use. Example: 21.10.3"
|
2022-06-13 17:41:50 +00:00
|
|
|
required: false
|
2022-11-15 15:57:34 +00:00
|
|
|
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:
|
2022-11-15 15:57:34 +00:00
|
|
|
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 }}
|
2024-02-03 04:09:41 +00:00
|
|
|
deprecationMessage: "setup-nextflow@v2 will no longer use the GitHub API. A token will no longer be needed."
|
2024-01-15 02:53:54 +00:00
|
|
|
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"
|
2024-02-03 04:09:41 +00:00
|
|
|
deprecationMessage: "setup-nextflow@v2 will no longer use the GitHub API. The cooldown will no longer apply."
|
2024-01-15 02:55:20 +00:00
|
|
|
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"
|
2024-02-03 04:09:41 +00:00
|
|
|
deprecationMessage: "setup-nextflow@v2 will no longer use the GitHub API. The retry count will no longer apply."
|
|
|
|
|
2022-06-13 17:41:50 +00:00
|
|
|
runs:
|
2024-02-09 13:59:33 +00:00
|
|
|
using: "node20"
|
2022-11-15 15:57:34 +00:00
|
|
|
main: "dist/index.js"
|
2022-06-13 17:41:50 +00:00
|
|
|
branding:
|
2022-11-15 15:57:34 +00:00
|
|
|
icon: "shuffle"
|
|
|
|
color: "green"
|