Skip to content

Update the website on changes in doc/ folder #49

Update the website on changes in doc/ folder

Update the website on changes in doc/ folder #49

Workflow file for this run

name: Deploy Avro site
on:
push:
branches:
- master
- update-site
paths:
- .github/workflows/docs.yaml
- doc/**
- lang/c/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-docs:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout docs sources
uses: actions/checkout@v3
with:
submodules: recursive
- name: Checkout asf-site branch
uses: actions/checkout@v3
with:
ref: asf-site
path: asf-site
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install NPM dependencies
run: |
set -x
cd doc
npm install
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: 0.111.3
extended: true
- name: Build docs
run: |
set -x
cd doc
hugo --minify --destination ../website --baseURL=/asf-site
- name: Build C docs
run: |
set -x
sudo apt-get update -q
sudo apt-get install -q -y cmake liblzma-dev libsnappy-dev libjansson-dev zlib1g-dev pkg-config asciidoc source-highlight libsource-highlight-dev
pushd lang/c
./build.sh clean docs
popd
ls -laR build/c/
mkdir -p website/docs/++version++/api/c/
cp -r build/c/docs/index.html website/docs/++version++/api/c/

Check failure on line 66 in .github/workflows/docs.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/docs.yaml

Invalid workflow file

You have an error in your yaml syntax on line 66
- name: Build C++ docs
run: |
set -x
# sudo apt-get update -q
# sudo apt-get install -q -y cmake liblzma-dev libsnappy-dev libjansson-dev zlib1g-dev pkg-config asciidoc
pushd lang/c++
./build.sh clean doc
popd
mkdir -p website/docs/++version++/api/cpp/html/
cp -r lang/c++/doc/html/* website/docs/++version++/api/cpp/html/
- name: Copy & push the generated HTML
run: |
set -x
cd asf-site/
rsync \
-a \
--delete \
--exclude '/.git/' \
../website/ \
./
cp ../.asf.yaml .
touch .nojekyll
git status --porcelain
if [ "$(git status --porcelain)" != "" ]; then
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add --all
git commit -m 'Publish built docs triggered by ${{ github.sha }}'
git push || git push --force
fi