Skip to content

Commit bfaf22c

Browse files
committed
fix: update docs workflow
1 parent d8d9ec6 commit bfaf22c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/storybook.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- name: Deploy 🚀
1818
uses: JamesIves/github-pages-deploy-action@v4
1919
with:
20-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21-
BRANCH: docs # The branch the action should deploy to.
22-
FOLDER: docs-build # The folder that the build-storybook script generates files.
23-
CLEAN: true # Automatically remove deleted files from the deploy branch
20+
token: ${{ secrets.GITHUB_TOKEN }}
21+
branch: docs # The branch the action should deploy to.
22+
folder: docs-build # The folder that the build-storybook script generates files.
23+
clean: true # Automatically remove deleted files from the deploy branch
2424
clean-exclude: |
2525
.nojekyll
26-
TARGET_FOLDER: docs # The folder that we serve our Storybook files from
26+
target-folder: docs # The folder that we serve our Storybook files from

src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const App = () => {
2828
]
2929

3030
return (
31-
<div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', flexDirection: 'column', gap: 32, width: '100%', marginTop: 24 }}>
31+
<div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', flexDirection: 'column', gap: 32, width: '100%', marginTop: 32 }}>
3232
<div style={{ padding: '24px 0', width: '60%' }}>
3333
<UsageBar showFallbackColors items={itemsToDisplay} total={100} />
3434
</div>

0 commit comments

Comments
 (0)