mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 01:46:04 +00:00
Add action metadata
This commit is contained in:
parent
10f9d8fe9c
commit
3bce9199d1
1 changed files with 22 additions and 0 deletions
22
action.yml
Normal file
22
action.yml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
name: "Setup Nextflow"
|
||||||
|
description: "Install Nextflow and add it to the PATH"
|
||||||
|
author: "Thomas A. Christensen II"
|
||||||
|
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: "index.js"
|
||||||
|
branding:
|
||||||
|
icon: "shuffle"
|
||||||
|
color: "green"
|
Loading…
Reference in a new issue