Parse the static sit config, inject pages url

This commit is contained in:
Smitha Borkar
2022-06-16 14:28:43 -07:00
parent dabdcba737
commit 351ece72e7
10 changed files with 14221 additions and 9 deletions

View File

@@ -4,7 +4,8 @@ const core = require('@actions/core')
function getRequiredVars() {
return {
repositoryNwo: process.env.GITHUB_REPOSITORY,
githubToken: core.getInput('token')
githubToken: core.getInput('token'),
staticSiteGenerator: core.getInput('static_site_generator')
}
}