From 39c8738968ab70a8d507f72fb63ed525410319b1 Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Sat, 12 Nov 2022 21:39:40 -0600 Subject: [PATCH] docs: Add note about why this is a complicated action --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index cc956b4..d08f1a8 100644 --- a/README.md +++ b/README.md @@ -73,3 +73,20 @@ This action locates the releases based upon the GitHub API, and requires an acce ## Outputs There are no outputs from this action. + +## Why was this action made? + +[Slack link](https://nfcore.slack.com/archives/CE56GDKN0/p1655210460795839) + +You may be asking, why not just a few yaml lines? + +```yaml +- name: Install Nextflow + env: + NXF_VER: ${{ matrix.NXF_VER }} + run: | + wget -qO- get.nextflow.io | bash + sudo mv nextflow /usr/local/bin/ +``` + +The versioning. From the Nextflow install script you can't get `latest-edge` or `latest-everything` for example.