mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-13 09:25:49 +00:00
23 lines
536 B
YAML
23 lines
536 B
YAML
name: Build and Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
|
|
- name: vuepress-deploy
|
|
uses: jenkey2011/vuepress-deploy@master
|
|
env:
|
|
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
|
TARGET_REPO: IT4Change/IT4C.dev
|
|
TARGET_BRANCH: gh-pages
|
|
BUILD_SCRIPT: npm install && npm run build-node16 -- --config docs/.vuepress/config github.js
|
|
BUILD_DIR: docs/.vuepress/dist
|