Skip to content

Commit

Permalink
Fix typo in Build StoryBook step
Browse files Browse the repository at this point in the history
  • Loading branch information
JackatDJL committed Mar 16, 2024
1 parent 6dfc8ab commit bb82170
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/WEBCI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: noplus-web
StoryBook:
name: Build Storybook πŸ“š
name: Build StoryBook πŸ“š
runs-on: ubuntu-latest
steps:
- name: Checkout code πŸ“¦
Expand Down Expand Up @@ -118,7 +118,16 @@ jobs:
run: |
echo '{"github": {"enabled": true}}' > vercel.json
- name: Commit and Push to Current Branch πŸ“¦
- name: Commit Changes πŸ“¦
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add vercel.json
git add noplus-web/public/storydocs
git add docs/storybook
git commit -m "Deploy Storybook and StoryDocs to Vercel πŸ“š"
- name: Push to Current Branch πŸ“¦
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# NoPlus Web Branch
[![CI Scripts 🧾 for Web Branches βœ”](https://github.com/JnMProjects/NoPlus/actions/workflows/WEBCI.yaml/badge.svg)](https://github.com/JnMProjects/NoPlus/actions/workflows/WEBCI.yaml)

This branch is dedicated to the website development of NoPlus and should not be merged into or from any other branch.

Expand Down

0 comments on commit bb82170

Please sign in to comment.