deploy-gh

A simple script to deploy main branch to GitHub pages

Usage no npm install needed!

<script type="module">
  import deployGh from 'https://cdn.skypack.dev/deploy-gh';
</script>

README

deploy-gh

npm version

A simple script to deploy your GitHub project's main branch to GitHub pages.

See this package in action here.

Installation

npm install --save-dev deploy-gh

Usage

This script makes a best effort attempt to pick out your GitHub project's main branch (this prefers main if that branch exists, otherwise it falls back to master). Then it merges this into the gh-pages branch and pushes this back to the remote origin.

First, make sure you have an index.html file in the root of your repository.

Next, inside package.json:

  "scripts": {
    "test": "... whatever you normally have here ...",
    "deploy": "deploy-gh"
  },

To run this, make sure all changes are committed on your main branch and then run npm run deploy.