
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
gatsby-plugin-github-pages
Advanced tools
A Gatsby plugin that deploys your public folder to Github Pages on build.
With no configuration the destination is root to a gh-pages
branch on the current repository.
The branch, directory, and repository my all be changed via the publishOptions
config.
The Gatsby site in the example directory is hosted at https://rongierlach.github.io/gatsby-plugin-github-pages.
$ npm install gatsby-plugin-github-pages
Place the plugin last in your plugins array.
If you are using a custom domain for your page you must specify it in the gatsby-config.js
file like so:
module.exports = {
plugins: [
/* other plugins */
{
resolve: 'gatsby-plugin-github-pages'
options: {
customDomain: 'mycustomdomain.com'
publishOptions: {
/* ... */
}
}
}
]
}
You must build with the prefix-paths flag like so:
$ gatsby build --prefix-paths
You must also specify a pathPrefix
in your gatsby-config.js
file:
module.exports = {
pathPrefix: '/name-of-your-repo',
plugins: [
/* other plugins */
{
resolve: 'gatsby-plugin-github-pages'
options: {
publishOptions: {
/* ... */
}
}
}
]
}
The plugin uses gh-pages
internally, publish options can be found in greater detail here.
FAQs
Gatsby plugin that deploys to Github Pages post-build.
We found that gatsby-plugin-github-pages demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.