Skip to content

feat: demo link change to ant.design (#328) #15

feat: demo link change to ant.design (#328)

feat: demo link change to ant.design (#328) #15

Workflow file for this run

name: Deploy to gh-pages
on:
push:
branches:
- "master"
jobs:
push-to-gh-pages:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "14"
- name: install
run: yarn
- name: Deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}