Skip to content

perf(components): [ImagePreview] header能见度样式优化 #43

perf(components): [ImagePreview] header能见度样式优化

perf(components): [ImagePreview] header能见度样式优化 #43

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build and Deploy
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the next branch
push:
branches: [main]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 6
- name: Set node version
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
- name: Install
run: |
pnpm install
- name: Build
run: |
pnpm build
# - name: Release
# env:
# GITHUB_TOKEN: ${{ github.token }}
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# run: pnpm semantic-release
- name: Build Site
run: |
pnpm build:site
# Runs a single command using the runners shell
- name: Deploy Site
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ github.token }}
branch: gh-pages
clean: true
folder: packages/docs/docs/.vitepress/dist