This repository has been archived by the owner on Jan 13, 2024. It is now read-only.
feat: update Button styles #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
tikui: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup project | |
uses: ./.github/actions/setup | |
- name: Validate project | |
uses: ./.github/actions/validate | |
- name: Build Storybook | |
run: pnpm build-storybook | |
- name: Deploy Storybook | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "github-actions-bot" | |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git | |
pnpm deploy-storybook | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Build package | |
# run: pnpm build | |
# - name: Release package | |
# run: pnpm semantic-release | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# HUSKY: 0 |