generate_24-034 #714
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: generate_24-034 | |
on: | |
schedule: | |
- cron: '1 12 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: metanorma/metanorma:latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
path: main | |
- name: checkout other repo | |
uses: actions/checkout@v3 # checkout the repository content to github runner | |
with: | |
repository: opengeospatial/developer-events | |
path: 24-034 | |
- name: Generate document | |
run: | | |
cd 24-034/2024/Open-Standards-Code-Sprint/engineering-report | |
metanorma --version | |
metanorma compile --agree-to-terms -t ogc -x xml,html document.adoc | |
cp document.html ../../../../main/24-034.html | |
cd ../../../../main | |
git config --global user.name 'opengeospatial' | |
git config --global user.email '[email protected]' | |
git add 24-034.html | |
git commit -am "Automated generation of HTML documents" | |
git push |