mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-05 19:58:20 +00:00
23 lines
409 B
YAML
23 lines
409 B
YAML
name: deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- run: npm install
|
|
- run: npm run build
|
|
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v2.5.0
|
|
env:
|
|
ACTIONS_DEPLOY_KEY: ${{secrets.ACTIONS_DEPLOY_KEY}}
|
|
PUBLISH_BRANCH: gh-pages
|
|
PUBLISH_DIR: dist
|