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
5fc57fbcc8
commit
e9ea6b06f5
1 changed files with 1 additions and 0 deletions
|
@ -6,6 +6,7 @@ export type NextflowRelease = {
|
||||||
isEdge: boolean
|
isEdge: boolean
|
||||||
binaryURL: string
|
binaryURL: string
|
||||||
allBinaryURL: string
|
allBinaryURL: string
|
||||||
|
published_at?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue