Skip to content

Commit

Permalink
FAIRSPC-87: added workflow to Build and deploy docs to Github Pages a…
Browse files Browse the repository at this point in the history
…nd fixed table in doc
  • Loading branch information
tgreenwood committed Jun 11, 2024
1 parent ea7b39d commit 326fe1f
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 62 deletions.
85 changes: 75 additions & 10 deletions .github/workflows/build_and_deploy_docs.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
# This workflow is triggered on any PR's changes

name: Build and deploy docs to Github Pages

on:
push:
branches:
- bugfix/FAIRSPC-87

- release

jobs:
build-saturn:
Expand All @@ -23,17 +20,85 @@ jobs:
- name: Set up Ruby (required for gem installation)
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
ruby-version: '3.3.2'

- name: Install Asciidoctor
- name: Install Asciidoctor to build docs
run: |
gem install asciidoctor
gem install asciidoctor-pdf
gem install rouge
- name: Run Build Docs script
run: ./docs/build.sh
- name: Build Docs - Collect needed files
run: |
set -e
# Initialize variables
PROJECT_FILES=(
"projects/saturn/src/main/resources/log4j2.properties"
"projects/saturn/src/main/resources/system-vocabulary.ttl"
"projects/saturn/taxonomies.ttl"
"projects/saturn/views.yaml"
"projects/saturn/vocabulary.ttl"
)
BUILD_DIR=./docs/build
version=$(cat VERSION)
# Create build directory
mkdir -p $BUILD_DIR/docs
# Copy all files to the build directory
cp ./README.adoc $BUILD_DIR
sed -i -e "s/VERSION/${version}/" $BUILD_DIR/README.adoc
cp -r ./docs/images $BUILD_DIR/docs/
for f in ${PROJECT_FILES[*]}; do
mkdir -p "$BUILD_DIR/$(dirname "$f")"
cp "$f" "$BUILD_DIR/"$(dirname "$f")""
done
- name: Run Deploy Docs script
run: ./docs/deploy.sh
- name: Build Docs - Generate PDF and HTML
run: |
set -e
BUILD_DIR=./docs/build
asciidoctor-pdf -a pdf-theme=./docs/pdf-theme.yml -o $BUILD_DIR/Fairspace.pdf $BUILD_DIR/README.adoc || {
echo "Error building PDF"
popd
exit 1
}
asciidoctor -a toc=left -D $BUILD_DIR/ -o index.html $BUILD_DIR/README.adoc || {
echo "Error building site"
popd
exit 1
}
rm $BUILD_DIR/README.adoc
- name: Deploy Docs (push to Github Pages, will be deployed automatically)
env:
CI_SERVICE_ACCOUNT_USER: ${{ secrets.CI_SERVICE_ACCOUNT_USER }}
CI_SERVICE_ACCOUNT_PASSWORD: ${{ secrets.FNS_PAT }}
DOCS_REPOSITORY_NAME: ${{ vars.DOCS_REPOSITORY_NAME }}
run: |
set -e
DOCS_REPO_URL="https://${CI_SERVICE_ACCOUNT_USER}:${CI_SERVICE_ACCOUNT_PASSWORD}@github.com/thehyve/${DOCS_REPOSITORY_NAME}"
echo "Cloning documentation repository ${DOCS_REPOSITORY_NAME} ..."
git clone --branch main "${DOCS_REPO_URL}" fairspace-docs
DOCS_DIR=$(pwd)/fairspace-docs
echo "Copying documentation to ${DOCS_DIR} ..."
cp -r ./docs/build/* "${DOCS_DIR}/"
cd "${DOCS_DIR}"
if [ ! "$(git status -s)" == "" ]; then
echo "Committing and pushing changes to ${DOCS_REPOSITORY_NAME} ..."
git config --global user.email "${CI_SERVICE_ACCOUNT_USER}@thehyve.nl"
git config --global user.name "${CI_SERVICE_ACCOUNT_USER}"
git add .
git commit -a -m "Update documentation"
git push "${DOCS_REPO_URL}" main
else
echo "Documentation unchanged."
fi
34 changes: 0 additions & 34 deletions docs/build.sh

This file was deleted.

18 changes: 0 additions & 18 deletions docs/deploy.sh

This file was deleted.

0 comments on commit 326fe1f

Please sign in to comment.