feat!: Remove Octkit conversion function for NextflowRelease

This commit is contained in:
Thomas A. Christensen II 2024-02-02 20:13:28 -06:00
parent 20ed9d58ea
commit 5d1d40a4ea
Signed by: millironx
GPG key ID: B7044A3432851F64

View file

@ -9,21 +9,6 @@ export type NextflowRelease = {
published_at?: string published_at?: string
} }
/**
* Converts the raw OctoKit data into a structured NextflowRelease
* @param data A "release" data struct from OctoKit
* @returns `data` converted into a `NextflowRelease`
*/
export function nextflow_release(data: object): NextflowRelease {
const nf_release: NextflowRelease = {
version: data["tag_name"],
isEdge: data["prerelease"],
downloadUrl: nextflow_bin_url(data, false),
downloadUrlAll: nextflow_bin_url(data, true)
}
return nf_release
}
/** /**
* Gets the download URL of a Nextflow binary * Gets the download URL of a Nextflow binary
* @param release A "release" data struct from OctoKit * @param release A "release" data struct from OctoKit