forked from GSA/sam-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
30 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +0,0 @@ | ||
name: Deploy to Github Pages | ||
on: | ||
push: | ||
branches: | ||
- ng14-to-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: '14.x' | ||
- name: Install Node Packages | ||
run: npm i | ||
- name: Build Stackblitz HTMLs | ||
run: npm run demo:stackblitzes | ||
- name: Build Storybook Assets | ||
env: | ||
NODE_OPTIONS: "--max_old_space_size=4096" | ||
run: npm run build-storybook-ng | ||
- name: Add .nojekyll file to allow for node_modules to be included in bundle | ||
run: touch storybook-static/.nojekyll | ||
- name: Deploy 🚀 | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: storybook-static | ||