diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit 90533f5466c0c94e362715a1e33514a13f4dda41
parent a9dd7b48b804b0a3ce88f0109cd96b59a413d1bd
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sat, 24 Jul 2021 10:53:52 +0200

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

diff --git a/.github/workflows/man.yml b/.github/workflows/man.yml @@ -0,0 +1,20 @@ +name: Man page + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + man: + runs-on: ubuntu-20.04 + steps: + - name: Install mandoc + run: sudo apt-get install mandoc + - name: Create html from man doc + run: mandoc -Thtml man/diary.1 > man/diary.1.html + - name: Send html to website + env: + SSH_B64: ${{ secrets.SSH_B64 }} + run: scp -i $(echo $SSH_B64 | base64 -d) man/diary.1.html hcloud@diary.in0rdr.ch:/home/hcloud/