Add paragraph explaining how to use model2owl, update artefacts list #27
Workflow file for this run
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: Build Documentation | |
on: | |
push: | |
branches: [ main, feature/** ] | |
env: | |
SITE_DIR: 'site' | |
jobs: | |
build_site: | |
name: "Build site with Antora" | |
runs-on: [ ubuntu-latest ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: "Install Node 16" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: "Install Antora" | |
run: make install-antora | |
- name: "Generate site using antora site action" | |
run: make build-site | |
# - name: "Generate site using antora site action" | |
# uses: kameshsampath/antora-site-action@master | |
# with: | |
# antora_playbook: antora-playbook.yml | |
## site_sources_path: "${{ github.workspace }}build/${{ env.SITE_DIR }}" | |
## antora_generator: 'antora-site-generator-lunr' | |
# antora_docsearch_enabled: 'true' | |
- name: "Upload generated site" | |
uses: actions/upload-artifact@v1.0.0 | |
with: | |
name: site | |
path: "${{ github.workspace }}/build/${{ env.SITE_DIR }}" | |
deploy_site: | |
runs-on: [ ubuntu-latest ] | |
needs: [ build_site ] | |
name: "Deploy GitHub Pages" | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' | |
steps: | |
- name: "Install Node 16" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Download generated site | |
uses: actions/download-artifact@v1 | |
with: | |
name: site | |
path: "${{ github.workspace }}/${{ env.SITE_DIR }}" | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/github-pages-deploy-action@v4.4.0 | |
with: | |
# ACCESS_TOKEN: # optional | |
GITHUB_TOKEN: "${{ github.token}}" | |
FOLDER: "${{ env.SITE_DIR }}" | |
BRANCH: 'gh-pages' | |
COMMIT_MESSAGE: "[CI] Publish Documentation for ${{ github.sha }}" |