vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 0325d7ae6e10233cc169764d420dfe5b538a073e
parent 2b9e360e3849fb5fbb46487459eaa91e812b1b8f
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Thu, 20 Feb 2020 08:05:26 +0100

ci: add man page generation

Diffstat:
A.github/workflows/man.yml | 38++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/man.yml b/.github/workflows/man.yml @@ -0,0 +1,38 @@ +name: Manual + +on: + push: + paths: + - 'man/**' + +jobs: + man: + runs-on: ubuntu-latest + steps: + + - name: Checkout + uses: actions/checkout@v2 + + - name: Dependency + run: sudo apt install mandoc + + - name: Manual generation + run: | + make man + wget 'https://cvsweb.bsd.lv/~checkout~/mandoc/mandoc.css?rev=1.46&content-type=text/plain' -O man/mandoc.css + ln -sf "${GITHUB_REPOSITORY#$GITHUB_ACTOR/}.1.html" man/index.html + + - name: Upload + env: + DEPLOY_TOKEN: ${{ secrets.GITHUB_DEPLOY_TOKEN }} + run: | + git clone --depth=1 --single-branch --branch gh-pages "https://x-access-token:${DEPLOY_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" /tmp/gh-pages + git config --global user.name "${GITHUB_ACTOR}" + git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" + mkdir -p /tmp/gh-pages/man + rm -f /tmp/gh-pages/man/* + cp -av man/*.html /tmp/gh-pages/man/ + cp -av man/*.css /tmp/gh-pages/man/ + cd /tmp/gh-pages + git add -A && git commit --allow-empty -am "Publishing from ${GITHUB_REPOSITORY} ${GITHUB_SHA}" + git push origin gh-pages