We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f9b9a commit c779a3aCopy full SHA for c779a3a
1 file changed
.github/workflows/build-storybook.yml
@@ -1,10 +1,10 @@
1
-name: Build Storybook
+name: Build Storybook and package
2
3
on:
4
push:
5
6
concurrency:
7
- group: build-storybook-${{ github.ref }}
+ group: build-${{ github.ref }}
8
cancel-in-progress: true
9
10
jobs:
@@ -28,10 +28,20 @@ jobs:
28
- name: install
29
run: pnpm install --frozen-lockfile
30
31
+ - name: build-package
32
+ run: pnpm run build
33
+
34
- name: build-storybook
35
run: pnpm run build-storybook
36
- - name: upload-artifact
37
+ - name: upload-dist
38
+ uses: actions/upload-artifact@v4
39
+ with:
40
+ name: dist
41
+ path: dist
42
+ retention-days: 7
43
44
+ - name: upload-storybook
45
uses: actions/upload-artifact@v4
46
with:
47
name: storybook-static
0 commit comments