mirror of
https://github.com/ustc-zzzz/mcbbs-markdown2bbcode-converter.git
synced 2024-11-21 01:10:50 +08:00
21 lines
404 B
YAML
21 lines
404 B
YAML
name: Publish to GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: |
|
|
npm install
|
|
npm run build
|
|
- uses: crazy-max/ghaction-github-pages@v2.5.0
|
|
with:
|
|
build_dir: build
|
|
fqdn: mm2bc.ustc-zzzz.net
|