1
0
Fork 0

Update packages/artifact/src/internal/shared/config.ts

Co-authored-by: Konrad Pabjan <konradpabjan@github.com>
pull/1486/head
Bethany 2023-08-09 10:30:50 -04:00 committed by GitHub
parent c6117995d3
commit 760f3fd3d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ export function getRuntimeToken(): string {
export function getResultsServiceUrl(): string { export function getResultsServiceUrl(): string {
const resultsUrl = process.env['ACTIONS_RESULTS_URL'] const resultsUrl = process.env['ACTIONS_RESULTS_URL']
if (!resultsUrl) { if (!resultsUrl) {
throw new Error('Unable to get ACTIONS_RESULTS_URL env variable') throw new Error('Unable to get the ACTIONS_RESULTS_URL env variable')
} }
return resultsUrl return resultsUrl
} }