chore: handle octokit typing

This commit is contained in:
Edmund Miller 2022-11-13 19:31:35 -06:00 committed by Thomas A. Christensen II
parent 7a0ec2a9b4
commit c19a8b88ef

View file

@ -2,6 +2,7 @@ import * as core from '@actions/core'
import * as exec from '@actions/exec'
import * as fs from 'fs'
import * as github from '@actions/github'
import {GitHub} from '@actions/github/lib/utils'
import * as tc from '@actions/tool-cache'
import {install_nextflow, nextflow_bin_url, release_data} from './functions'
@ -17,7 +18,7 @@ async function run(): Promise<void> {
let resolved_version = ''
// Setup the API
let octokit = {}
let octokit: InstanceType<typeof GitHub> | undefined
try {
octokit = github.getOctokit(token)
} catch (e: unknown) {
@ -31,7 +32,9 @@ async function run(): Promise<void> {
// Get the release info for the desired release
let release = {}
try {
release = await release_data(version, octokit)
if (octokit !== undefined) {
release = await release_data(version, octokit)
}
resolved_version = release['tag_name']
core.info(
`Input version '${version}' resolved to Nextflow ${release['name']}`