Skip to content

Commit

Permalink
Merge pull request #213 from storybookjs/chore/ghpage-release
Browse files Browse the repository at this point in the history
Re-enable GitHub Pages deploy workflow
  • Loading branch information
yannbf authored Sep 19, 2023
2 parents f8ded56 + 5500a94 commit 8ff94a0
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/deploy-ghpages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- master
tags-ignore:
- "*"

jobs:
build:
name: Build live examples
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm ci
- name: Build addon
run: npm run build
- name: Build examples
run: npm run build:example
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./packages/examples/storybook-static

deploy:
name: Deploy
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 8ff94a0

Please sign in to comment.