Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 864 Bytes

deploying.md

File metadata and controls

32 lines (19 loc) · 864 Bytes

Deploying

Deploying the application is straightforward and uses a Docusaurus command, which offers a convenient way to build the website and push to the gh-pages branch.

TODOs

Currently in this ee-docs application, deployments could be improved with:

How to deploy

Ensure you are authenticated with GitHub via command-line

  1. Merge all the latest completed changes from the develop branch to main
  2. Run the command npm run deploy

GitHub authentication options

You can use the following commands to switch between SSH for GitHub authentication:

Using SSH:

USE_SSH=true npm run deploy

Not using SSH:

GIT_USER=<Your GitHub username> npm run deploy