Skip to content

Commit

Permalink
fix: added missing input test values
Browse files Browse the repository at this point in the history
  • Loading branch information
jbristowe committed Sep 18, 2021
1 parent e18d952 commit d6aecfd
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/test-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ import * as tmp from 'tmp'
tmp.setGracefulCleanup()
const tmpdir = tmp.dirSync({template: 'run-runbook-XXXXXX'})
process.env = Object.assign(process.env, {
GITHUB_ACTION: '1',
INPUT_API_KEY: process.env['OCTOPUS_APIKEY'],
INPUT_SERVER: process.env['OCTOPUS_URL'],
INPUT_CANCEL_ON_TIMEOUT: false,
INPUT_DEBUG: false,
INPUT_ENVIRONMENTS: 'Webinar Environment',
INPUT_FORCE_PACKAGE_DOWNLOAD: false,
INPUT_IGNORE_SSL_ERRORS: false,
INPUT_NO_RAW_LOG: false,
INPUT_PROJECT: 'Projects-6445',
INPUT_RUNBOOK: 'Runbooks-701',
INPUT_SERVER: process.env['OCTOPUS_URL'],
INPUT_SHOW_PROGRESS: 'true',
INPUT_WAIT_FOR_RUN: false,
RUNNER_TEMP: tmpdir.name,
RUNNER_TOOL_CACHE: tmpdir.name,
GITHUB_ACTION: '1'
RUNNER_TOOL_CACHE: tmpdir.name
})

0 comments on commit d6aecfd

Please sign in to comment.