Fix production build SIDEBAR_APP_URL

Fix the production build now that SIDEBAR_APP_URL no longer defaults to
production h.
parent f86be70b
......@@ -148,7 +148,10 @@ stage('Publish') {
sh "sleep 2" // Give GitHub a moment to realize the tag exists.
// Bump the package version and create the GitHub release.
sh "yarn version --no-git-tag-version --new-version ${newPkgVersion}"
sh """
export SIDEBAR_APP_URL=https://hypothes.is/app.html
yarn version --no-git-tag-version --new-version ${newPkgVersion}
"""
sh "scripts/create-github-release.js"
// Publish the updated package to the npm registry.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment