Add new workflow #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to Github Pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
Build-And-Deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- name: Install Node Packages | |
run: npm i | |
- name: Install Global NG CLI | |
run: npm install -g @angular/cli@16 | |
- name: Build Stackblitz HTMLs | |
run: npm run demo:stackblitzes | |
- name: Build Storybook Assets | |
env: | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
run: GH_PAGES=true ng run sam-design-system-site:build-storybook | |
- name: Add .nojekyll file to allow for node_modules to be included in bundle | |
run: touch storybook-static/.nojekyll | |
- name: test | |
run: echo ${{ steps.deployment.outputs.page_url }} | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: storybook-static | |
target-folder: test |