{"id":21712509,"url":"https://github.com/youfoundron/gatsby-plugin-github-pages","last_synced_at":"2026-04-13T22:02:03.965Z","repository":{"id":57244669,"uuid":"111959441","full_name":"youfoundron/gatsby-plugin-github-pages","owner":"youfoundron","description":"Gatsby plugin that deploys to Github Pages post-build.","archived":false,"fork":false,"pushed_at":"2019-05-14T20:31:08.000Z","size":1476,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-26T17:57:15.977Z","etag":null,"topics":["build","gatsby","gh-pages","github","github-pages","pages","plugin"],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/youfoundron.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-11-24T22:20:20.000Z","updated_at":"2018-03-07T05:57:23.000Z","dependencies_parsed_at":"2022-09-01T06:12:03.051Z","dependency_job_id":null,"html_url":"https://github.com/youfoundron/gatsby-plugin-github-pages","commit_stats":null,"previous_names":["rongierlach/gatsby-plugin-github-pages"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/youfoundron/gatsby-plugin-github-pages","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youfoundron%2Fgatsby-plugin-github-pages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youfoundron%2Fgatsby-plugin-github-pages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youfoundron%2Fgatsby-plugin-github-pages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youfoundron%2Fgatsby-plugin-github-pages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/youfoundron","download_url":"https://codeload.github.com/youfoundron/gatsby-plugin-github-pages/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/youfoundron%2Fgatsby-plugin-github-pages/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31772642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T20:17:16.280Z","status":"ssl_error","status_checked_at":"2026-04-13T20:17:08.216Z","response_time":93,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["build","gatsby","gh-pages","github","github-pages","pages","plugin"],"created_at":"2024-11-25T23:39:30.332Z","updated_at":"2026-04-13T22:02:03.948Z","avatar_url":"https://github.com/youfoundron.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gatsby Plugin GitHub Pages\n[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)\n [![npm version](https://badge.fury.io/js/gatsby-plugin-github-pages.svg)](https://badge.fury.io/js/gatsby-plugin-github-pages) [![dependencies Status](https://david-dm.org/rongierlach/gatsby-plugin-github-pages/status.svg)](https://david-dm.org/rongierlach/gatsby-plugin-github-pages) [![devDependencies Status](https://david-dm.org/rongierlach/gatsby-plugin-github-pages/dev-status.svg)](https://david-dm.org/rongierlach/gatsby-plugin-github-pages?type=dev)  \nA Gatsby plugin that deploys your public folder to Github Pages on build.  \n\nWith no configuration the destination is root to a `gh-pages` branch on the current repository.  \n\nThe branch, directory, and repository my all be changed via the `publishOptions` config.  \n\nThe Gatsby site in the example directory is hosted at  [https://rongierlach.github.io/gatsby-plugin-github-pages](https://rongierlach.github.io/gatsby-plugin-github-pages).  \n\n## Install\n`$ npm install gatsby-plugin-github-pages`\n\n## Usage\nPlace the plugin *last* in your plugins array.  \n\n#### **[User and Organization Pages](https://help.github.com/articles/user-organization-and-project-pages/#project-pages)**\nIf you are using a custom domain for your page you must specify it in the `gatsby-config.js` file like so:\n```javascript\nmodule.exports = {\n  plugins: [\n    /* other plugins */\n    {\n      resolve: 'gatsby-plugin-github-pages'\n      options: {\n        customDomain: 'mycustomdomain.com'\n        publishOptions: {\n          /* ... */\n        }\n      }\n    }\n  ]\n}\n```\n\n#### **[Project Pages](https://help.github.com/articles/user-organization-and-project-pages/#project-pages)**\nYou must build with the prefix-paths flag like so:  \n`$ gatsby build --prefix-paths`  \n\nYou must also specify a [`pathPrefix`](https://www.gatsbyjs.org/docs/path-prefix/) in your `gatsby-config.js` file:\n```javascript\nmodule.exports = {\n  pathPrefix: '/name-of-your-repo',\n  plugins: [\n    /* other plugins */\n    {\n      resolve: 'gatsby-plugin-github-pages'\n      options: {\n        publishOptions: {\n          /* ... */\n        }\n      }\n    }\n  ]\n}\n```\n\n## Publish Options\nThe plugin uses `gh-pages` internally, publish options can be found in greater detail [here](https://github.com/tschaub/gh-pages#options).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoufoundron%2Fgatsby-plugin-github-pages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyoufoundron%2Fgatsby-plugin-github-pages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoufoundron%2Fgatsby-plugin-github-pages/lists"}