Change environment variable data type to explicit string

This commit is contained in:
James M. Greene
2022-08-17 14:34:23 -05:00
committed by GitHub
parent 42451665cc
commit 9b7553ef7f
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@@ -16443,7 +16443,7 @@ async function main() {
setPagesPath({ staticSiteGenerator, generatorConfigFile, path: siteUrl.pathname })
}
outputPagesBaseUrl(siteUrl)
core.exportVariable('GITHUB_PAGES', true)
core.exportVariable('GITHUB_PAGES', 'true')
} catch (error) {
core.setFailed(error)
process.exit(1)

View File

@@ -18,7 +18,7 @@ async function main() {
setPagesPath({ staticSiteGenerator, generatorConfigFile, path: siteUrl.pathname })
}
outputPagesBaseUrl(siteUrl)
core.exportVariable('GITHUB_PAGES', true)
core.exportVariable('GITHUB_PAGES', 'true')
} catch (error) {
core.setFailed(error)
process.exit(1)