setup-nextflow/action.yml
Thomas A. Christensen II f09d15061f
fix: Point to Typescript transpiled action script
The transpiled Typescript files are in a different directory than their Javascript counterparts.
Fix the action metadata to reflect this.
2023-05-23 20:13:53 +00:00

22 lines
675 B
YAML

name: "Setup Nextflow"
description: "Install Nextflow and add it to the PATH"
author: "nf-core"
inputs:
version:
description: "The Nextflow version to download (if necessary) and use. Example: 21.10.3"
required: false
default: "latest-stable"
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."
required: false
default: ${{ github.token }}
runs:
using: "node16"
main: "lib/src/main.js"
branding:
icon: "shuffle"
color: "green"