mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
26 lines
571 B
YAML
26 lines
571 B
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- 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@master
|
|
env:
|
|
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
|
BRANCH: gh-pages
|
|
FOLDER: dist
|
|
BUILD_SCRIPT: npm install && npm run build |