mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-23 18:09:55 +00:00
feat: Add optional published_at field to NextflowRelease type
Per @ewels request, the API on nf-co.re includes a "published_at" field with the date of each release. For future compatibility without breaking anything current, add an optional field that can handle this additional information.
This commit is contained in:
parent
d4db5065bf
commit
e259f2a032
1 changed files with 1 additions and 0 deletions
|
@ -6,6 +6,7 @@ export type NextflowRelease = {
|
|||
isEdge: boolean
|
||||
binaryURL: string
|
||||
allBinaryURL: string
|
||||
published_at?: string
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue