Skip to content

Update README.md

Update README.md #1

Workflow file for this run

# File: .github/workflows/build-docs.yml
on:
push:
branches:
- "master"
name: Build-Documentation
jobs:
build:
name: build-docs
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Provision the build server
uses: ./
- name: Checkout HPCC Platform
uses: actions/checkout@v2
with:
repository: g-pan/HPCC-Platform
path: HPCC-Platform
ref: community_7.12.24-1
submodules: true
- name: build
run: |
mkdir build
cd build
cmake -G "Unix Makefiles" -D CMAKE_BUILD_TYPE=Release -DMAKE_DOCS_ONLY=ON -DUSE_NATIVE_LIBRARIES=ON -DDOCS_AUTO=ON -DDOC_LANGS=ALL ../HPCC-Platform
make -j4
mkdir /home/runner/output
pwd
cp ./docs/EN_US/HTMLHelp/*.zip /home/runner/output/
cp ./docs/PT_BR/HTMLHelp/*.zip /home/runner/output/
- name: upload-artifact
uses: actions/upload-artifact@v2
with:
name: html-help-7.12.24-1
path: |
/home/runner/output/*