fix: update build.yml

This commit is contained in:
yanglbme 2020-05-02 20:31:24 +08:00
parent 589236ec80
commit 6d5ba96281

View File

@ -1,19 +1,24 @@
name: build
name: Build and Deploy
on:
push:
branches: [ master ]
branches: [ master ]
jobs:
build:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master # 将代码拷贝到虚机中
- name: npm install, build
uses: JamesIves/github-pages-deploy-action@master
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} # 使用刚新建的secret
BRANCH: gh-page # 存放产物的分支名称
FOLDER: dist # 存放build后产物的目录
BUILD_SCRIPT: npm install && npm run build # 执行的命令
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install and Build
run: |
npm install
npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: dist