feat: Support locked combos in drag-combo behavior (#6961) #676
This file contains hidden or 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: Deploy | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| deploy-site: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 8 | |
| - uses: actions/checkout@v2 | |
| - run: pnpm install | |
| - run: pnpm build | |
| - run: pnpm build:site | |
| - run: cp ./packages/site/CNAME ./packages/site/dist/CNAME | |
| - run: | | |
| cd ./packages/site/dist | |
| git init | |
| git config --local user.name antv | |
| git config --local user.email antv@antfin.com | |
| git add . | |
| git commit -m "update by release action" | |
| - uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{secrets.PERSONAL_ACCESS_TOKEN}} | |
| directory: ./packages/site/dist | |
| branch: v4-site | |
| force: true |