File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 66 - main
77 workflow_dispatch :
88
9+ env :
10+ NODE_OPTIONS : --max_old_space_size=20480
11+ GITHUB_REPOSITORY : ${{ github.repository }}
12+
913jobs :
1014 deploy-gh-pages :
1115 permissions :
Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ module.exports = {
33 siteMetadata : {
44 title : 'Ethereum JSON-RPC Specification' ,
55 description : 'A specification of the standard interface for Ethereum clients.' ,
6- siteUrl : 'https://acolytec3.github.io/execution-apis' ,
6+ siteUrl : process . env . GITHUB_REPOSITORY
7+ ? `https://${ process . env . GITHUB_REPOSITORY . split ( '/' ) [ 0 ] } .github.io/execution-apis`
8+ : 'https://ethereum.github.io/execution-apis' , // fallback for local development
79 logoUrl : 'https://raw.githubusercontent.com/open-rpc/design/master/icons/open-rpc-logo-noText/open-rpc-logo-noText%20(PNG)/256x256.png' ,
810 primaryColor : '#3f51b5' , //material-ui primary color
911 secondaryColor : '#f50057' , //material-ui secondary color
You can’t perform that action at this time.
0 commit comments