Skip to content

Commit

Permalink
Merge branch 'svelte-4-compatible' into storybook-upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
sabirveli committed Dec 19, 2023
2 parents ee5fdc8 + 5a960b6 commit 99306a3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy-versioned.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and Deploy
on:
push:
branches:
- storybook-upgrade
jobs:
deploy:
name: Setup build and deploy
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Run Build script
uses: actions/setup-node@v1
with:
node-version: '18.18.0'
- run: npm ci
- run: npx lerna bootstrap --hoist --no-ci
- run: npm run build:dist

- name: Deploy
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: build/v3
CLEAN: true
TARGET_FOLDER: docs

0 comments on commit 99306a3

Please sign in to comment.