All Projects → codeship → storybook-surge-github-action

codeship / storybook-surge-github-action

Licence: other
Build and deploy your storybook.js to branch specific Surge.sh sites

Programming Languages

shell
77523 projects
Dockerfile
14818 projects

Deploy your storybook.js to branch specific surge.sh domains

This action will take an existing storybook configuration and deploy that storybook to branch specific static surge.sh sites.

Intended to be set up on push

Required Secrets

You can set these up within the workflow editor tool.

  • SURGE_LOGIN
  • SURGE_TOKEN

Behavior

When you push to your repository this action will:

  • Start a pending GitHub Deployment for the branch
  • Build your storybook
  • Deploy your storybook to a public surge.sh site
  • Update the pending GitHub Deployment with the URL of the storybook.

The urls follow the pattern:

https://{repo_owner}-{repo_name}-storybook-{branch_name}.surge.sh

Example workflow

workflow "Storybook" {
  on = "push"
  resolves = ["Publish Storybook to Surge.sh"]
}

action "Publish Storybook to Surge.sh" {
  uses = "codeship/[email protected]"
  secrets = [
    "SURGE_LOGIN",
    "SURGE_TOKEN",
    "GITHUB_TOKEN",
  ]
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].