Skip to content

Commit 95f0ad2

Browse files
committed
bump openglobus
bump react version test deploy storybook
1 parent b4b9fa6 commit 95f0ad2

File tree

4 files changed

+922
-973
lines changed

4 files changed

+922
-973
lines changed

.github/workflows/storybook.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build and publish Storybook
2+
3+
on:
4+
push:
5+
branches: [ improve-components ]
6+
7+
jobs:
8+
publish-storybook:
9+
10+
permissions:
11+
contents: write
12+
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v3
17+
with:
18+
node-version: '20.x'
19+
registry-url: 'https://registry.npmjs.org'
20+
- run: npm ci
21+
- run: npm run build-storybook
22+
- name: Deploy to external repository
23+
uses: pavletto/github-action-push-to-another-repository@main
24+
env:
25+
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
26+
with:
27+
source-directory: ./storybook-static
28+
destination-github-username: openglobus
29+
destination-repository-name: openglobus.github.io
30+
user-email: github-actions[bot]@users.noreply.github.com
31+
target-branch: master
32+
target-directory: storybook

0 commit comments

Comments
 (0)