docbook: gnc-gui-*: Rename the scheduled edit/new/delete menus #166
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: html-ubuntu | |
on: [push, pull_request] | |
jobs: | |
ubuntu-latest_dist-mini: | |
runs-on: ubuntu-latest | |
name: make HTML in Ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- run: sudo apt-get update | |
- name: Install minimal dependencies | |
run: sudo apt-get install -y cmake ninja-build libxml2-utils xsltproc docbook-xsl | |
- run: | | |
echo "ROOT_DIR=$GITHUB_WORKSPACE/.." >> $GITHUB_ENV | |
- name: Create Directories | |
run: | | |
pwd | |
mkdir $ROOT_DIR/inst | |
mkdir build | |
- name: Configure GnuCash-docs | |
run: | | |
cd build | |
cmake -G Ninja -DCMAKE_INSTALL_PREFIX=$ROOT_DIR/inst $GITHUB_WORKSPACE -DWITH_MOBI=ON | |
- name: Build HTML | |
run: | | |
cd build | |
ninja html | |
- uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: TestLog | |
path: ${{ github.workspace }}/build/Testing/Temporary/LastTest.log |