mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 01:46:04 +00:00
Clarify README
This commit is contained in:
parent
6ff7aa9784
commit
130ca2f785
1 changed files with 12 additions and 13 deletions
19
README.md
19
README.md
|
@ -17,20 +17,14 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: "temurin"
|
||||
java-version: "11"
|
||||
- uses: MillironX/setup-nextflow@v1
|
||||
with:
|
||||
version: "21.10"
|
||||
all: false
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- run: nextflow help
|
||||
- run: nextflow run ${GITHUB_WORKSPACE}
|
||||
```
|
||||
|
||||
## Inputs
|
||||
|
||||
All inputs are optional! :sunglasses: By default, this action will install the [latest stable release](https://nextflow.io/docs/latest/getstarted.html#stable-edge-releases) of Nextflow. You can optionally pick a different version, or choose to install all versions.
|
||||
|
||||
### `version`
|
||||
|
||||
> **default: `latest`**
|
||||
|
@ -69,7 +63,12 @@ A boolean deciding whether to download the "all versions" distribution of Nextfl
|
|||
|
||||
> **default: `${{ secrets.GITHUB_TOKEN }}`**
|
||||
|
||||
This action locates the releases based upon the GitHub API, and requires an access token. The default token provided with all GitHub actions should be sufficient for all use cases.
|
||||
> **:warning: This really shouldn't be changed. If you think this will fix a workflow problem, triple-check everything else first. :warning:**
|
||||
|
||||
This action locates the releases based upon the GitHub API, and requires an access token. The default token provided with all GitHub actions should be sufficient for all use cases on GitHub. Valid reasons to change this:
|
||||
|
||||
- GitHub Enterprise server (and only under some configurations)
|
||||
- Testing workflows locally with https://github.com/nektos/act
|
||||
|
||||
## Outputs
|
||||
|
||||
|
|
Loading…
Reference in a new issue