Skip to content

Meta test

Meta test #10

Workflow file for this run

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