Skip to content

Commit

Permalink
fix: github environment variables are not allowed to start with `GITH…
Browse files Browse the repository at this point in the history
…UB_`
  • Loading branch information
seasick committed Jan 16, 2024
1 parent e30d7f1 commit 62d9b07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions esbuild.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export default {
}),
replace({
__TRACKER_SNIPPET: process.env.TRACKER_SNIPPET || '',
__GITHUB_ISSUE_URL: process.env.GITHUB_ISSUE_URL || '',
__GITHUB_REPO_URL: process.env.GITHUB_REPO_URL || '',
__GITHUB_ISSUE_URL: process.env.GH_ISSUE_URL || '',
__GITHUB_REPO_URL: process.env.GH_REPO_URL || '',
}),
],
};

0 comments on commit 62d9b07

Please sign in to comment.