an attempt to actually deploy docs
This commit is contained in:
parent
e3759f1dbe
commit
bcfc9c0dc2
2 changed files with 28 additions and 5 deletions
|
@ -1,6 +1,9 @@
|
|||
name: Main LMDBAL workfow
|
||||
run-name: ${{ gitea.actor }} is running LMDBAL main workflow
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
Archlinux:
|
||||
|
@ -19,5 +22,25 @@ jobs:
|
|||
- name: Run tests
|
||||
working-directory: ./build/test
|
||||
run: ./runUnitTests
|
||||
- name: Status
|
||||
run: echo "${{ job.status }}"
|
||||
- name: Compres Docs
|
||||
working-directory: ./build/doc
|
||||
run: tar -cvzf doc.tar.gz man xml html
|
||||
- name: Copy docs via scp
|
||||
uses: appleboy/scp-action@v0.1.4
|
||||
with:
|
||||
host: ${{ secrets.DOMAIN_ROOT }}
|
||||
username: ${{ secrets.DEPLOY_USER_NAME }}
|
||||
key: ${{ secrets.DEPLOY_PRIVATE_KEY }}
|
||||
source: "./build/doc/doc.tar.gz"
|
||||
target: ${{ secrets.LMDBAL_DOCS_DEPLOY_PATH }}
|
||||
- name: Unpack the archive
|
||||
uses: appleboy/ssh-action@v1.0.0
|
||||
with:
|
||||
host: ${{ secrets.DOMAIN_ROOT }}
|
||||
username: ${{ secrets.DEPLOY_USER_NAME }}
|
||||
key: ${{ secrets.DEPLOY_PRIVATE_KEY }}
|
||||
script_stop: true
|
||||
script: |
|
||||
cd ${{ secrets.LMDBAL_DOCS_DEPLOY_PATH }}
|
||||
tar -xvzf doc.tar.gz
|
||||
rm doc.tar.gz
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue