Skip to content

Commit 911cfa5

Browse files
committed
chore: Fix storybook deployment action
1 parent 2c2fd99 commit 911cfa5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ jobs:
5656
# this by using our own GH_TOKEN_REPO_ACCESS organization secret.
5757
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_REPO_ACCESS }}
5858

59+
- name: Upload storybook static files as artifact
60+
uses: actions/upload-pages-artifact@v3
61+
with:
62+
path: apps/storybook/dist/
63+
5964
deploy-pages:
6065
needs: release
6166
name: Deploy Docs to GitHub Pages
@@ -66,11 +71,6 @@ jobs:
6671
url: ${{ steps.deployment.outputs.page_url }}
6772

6873
steps:
69-
- name: Upload static files as artifact
70-
uses: actions/upload-pages-artifact@v3
71-
with:
72-
path: apps/storybook/dist/
73-
7474
- name: Deploy to GitHub Pages
7575
id: deployment
7676
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)