an attempt to actually deploy docs
This commit is contained in:
parent
e3759f1dbe
commit
bcfc9c0dc2
@ -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
|
||||
|
@ -1,13 +1,13 @@
|
||||
# Maintainer: Yury Gubich <blue@macaw.me>
|
||||
pkgname=lmdbal
|
||||
pkgver=0.3.1
|
||||
pkgver=0.5.0
|
||||
pkgrel=1
|
||||
pkgdesc="LMDB Abstraction Layer, qt5 version"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://git.macaw.me/blue/lmdbal"
|
||||
license=('GPL3')
|
||||
depends=( 'lmdb' 'qt5-base')
|
||||
makedepends=('cmake>=3.16')
|
||||
makedepends=('cmake>=3.16' 'gcc')
|
||||
optdepends=()
|
||||
|
||||
source=("$pkgname-$pkgver.tar.gz::https://git.macaw.me/blue/lmdbal/archive/$pkgver.tar.gz")
|
||||
|
Loading…
Reference in New Issue
Block a user