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
|
2024-12-05 01:11:10 +00:00
|
|
|
default: "false"
|
2022-06-13 17:41:50 +00:00
|
|
|
runs:
|
2024-12-05 01:11:10 +00:00
|
|
|
using: "composite"
|
|
|
|
steps:
|
|
|
|
- uses: ./subaction
|
|
|
|
with:
|
|
|
|
version: ${{ inputs.version }}
|
|
|
|
all: ${{ inputs.all }}
|
2022-06-13 17:41:50 +00:00
|
|
|
branding:
|
2022-11-15 15:57:34 +00:00
|
|
|
icon: "shuffle"
|
|
|
|
color: "green"
|