Reorganized header images #36
This file contains hidden or 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
| on: | |
| push: | |
| paths: | |
| - 'onstage_rules/**' | |
| - 'preamble.tex' | |
| - 'committee_list.tex' | |
| jobs: | |
| build: | |
| name: build main rules | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Checkout repository with submodules | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: true | |
| - name: build main rules | |
| run: | | |
| docker run -v $(pwd):/documents asciidoctor/docker-asciidoctor .ci/adoc-to-tex.sh onstage_rules | |
| docker run -v $(pwd):/documents mrshu/texlive-dblatex .ci/tex-to-pdf.sh onstage_rules | |
| mkdir -p dist/${GITHUB_REF#refs/heads/}/ | |
| cp -R ./media rules_documents/* dist/${GITHUB_REF#refs/heads/}/ | |
| - name: publish main rules | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./dist | |
| keep_files: True |