mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-13 09:25:49 +00:00
23 lines
537 B
YAML
23 lines
537 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@v1.8.1
|
|
env:
|
|
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
|
TARGET_REPO: IT4Change/IT4C.dev.github.io
|
|
TARGET_BRANCH: master
|
|
BUILD_SCRIPT: npm install && npm run build:workflow
|
|
BUILD_DIR: docs/.vuepress/dist
|
|
CNAME: https://www.it4c.dev |