Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

feat: update Button styles #56

feat: update Button styles

feat: update Button styles #56

Workflow file for this run

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