Skip to content

Merge branch 'dev/master' #8

Merge branch 'dev/master'

Merge branch 'dev/master' #8

Workflow file for this run

name: Documentation Website Deployment
on:
push:
branches:
- master
jobs:
build:
name: Documentation Deployment
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: deploy manpages to website
env:
GH_TOKEN: ${{ secrets.GITLAB_DEPLOY_KEY }}
run: |
git config --global user.email "me@patrickwu.space"
git config --global user.name "Jinming Wu, Patrick"
git clone --depth 1 https://patrick:$GH_TOKEN@git.wedotstud.io/wslu/documentation website
cp -f ./CODE_OF_CONDUCT.md ./website/coc.md
cp -f ./CONTRIBUTING.md ./website/contributing.md
git --git-dir=./website/.git --work-tree=./website add -A
git --git-dir=./website/.git --work-tree=./website commit -m "Document update"
git --git-dir=./website/.git --work-tree=./website push