Meta test #10
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: sensorml-test | |
on: | |
push: | |
branches: [ meta-test ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: metanorma/metanorma:latest | |
steps: | |
- name: Checkout repo | |
uses: actions/[email protected] | |
- name: Generate document | |
run: | | |
cd sensorml/standard | |
metanorma compile --agree-to-terms -t ogc -x html ./document.adoc | |
mv document.html 12-000r2.html | |
git config --global --add safe.directory '*' | |
git config --global user.name 'cam-s-hunt' | |
git config --global user.email '[email protected]' | |
git add 12-000r2.html | |
git commit -am "Automated generation of HTML documents" | |
git push | |
uses: actions/deploy-pages@v1 |