Fixing duplicate elementSpec and adding sequences #104
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 LIM Docs | |
on: push | |
jobs: | |
buildDocs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Install pandoc | |
uses: r-lib/actions/setup-pandoc@v1 | |
with: | |
pandoc-version: '2.14.0.3' | |
- run: pandoc -v | |
- name: Build everything | |
run: ant -f ${{ github.workspace }}/build.xml documentation | |
- name: Deploy documentation | |
if: ${{ github.repository_owner == 'sfu-dhil' }} | |
uses: JamesIves/github-pages-deploy-action@4.1.0 | |
with: | |
branch: gh-pages | |
folder: public | |
single-commit: true | |