mirror of
https://github.com/actions/deploy-pages.git
synced 2025-12-09 00:26:14 +00:00
28 lines
873 B
JavaScript
28 lines
873 B
JavaScript
const core = require('@actions/core')
|
|
|
|
// Load variables from Actions runtime
|
|
function getRequiredVars() {
|
|
return {
|
|
runTimeUrl: process.env.ACTIONS_RUNTIME_URL,
|
|
workflowRun: process.env.GITHUB_RUN_ID,
|
|
runTimeToken: process.env.ACTIONS_RUNTIME_TOKEN,
|
|
repositoryNwo: process.env.GITHUB_REPOSITORY,
|
|
buildVersion: process.env.GITHUB_SHA,
|
|
buildActor: process.env.GITHUB_ACTOR,
|
|
actionsId: process.env.GITHUB_ACTION,
|
|
githubApiUrl: process.env.GITHUB_API_URL ?? `https://api.github.com`,
|
|
githubToken: core.getInput('token'),
|
|
}
|
|
}
|
|
|
|
module.exports = function getContext() {
|
|
const requiredVars = getRequiredVars()
|
|
for (const variable in requiredVars) {
|
|
if (requiredVars[variable] === undefined) {
|
|
throw new Error(`${variable} is undefined. Cannot continue.`)
|
|
}
|
|
}
|
|
core.debug('all variables are set')
|
|
return requiredVars
|
|
}
|