Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create make-pdfs.yml #29

Open
wants to merge 8 commits into
base: editing
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/make-pdfs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build LaTeX manuals and tutorials
on: [push]
jobs:
build-lang-man:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v2
with:
root_file: documentation/VDM10LangMan/VDM10_lang_man.tex
work_in_root_file_dir: true
- name: Remove Old PDF
uses: JesseTG/[email protected]
with:
path: documentation/VDM10LangMan/VDM10_lang_man.pdf
- name: Upload PDF file
uses: actions/upload-artifact@v3
with:
name: PDF
path: documentation/VDM10LangMan/VDM10_lang_man.pdf
- name: Download PDF artifact
uses: actions/download-artifact@v2
with:
name: distribution
path: documentation/VDM10LangMan
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automated Change
branch: jolnd-pdf-action
commit_options: '--no-verify --signoff'
commit_author: Author <[email protected]>
status_options: '--untracked-files=no'
skip_dirty_check: true
Empty file modified documentation/VDM10LangMan/MakeLangMan.sh
100644 → 100755
Empty file.