You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
555 B
30 lines
555 B
4 years ago
|
name: deploy
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Setup Node.js v14.x
|
||
|
uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: "14.x"
|
||
|
|
||
|
- name: Install
|
||
|
run: npm install
|
||
|
|
||
|
- name: Build
|
||
|
run: npm run build
|
||
|
|
||
|
- name: Deploy
|
||
|
uses: peaceiris/actions-gh-pages@v3
|
||
|
with:
|
||
|
publish_dir: ./dist
|
||
|
personal_token: ${{ secrets.PERSONAL_TOKEN }}
|
||
|
commit_message: Update ghPages
|