refactor action to use build.sh #126
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: render samples | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
render-samples: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/trustedcomputinggroup/pandoc:latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Run the action on sample1 | |
uses: ./ | |
with: | |
input-md: sample1.md | |
output-pdf: sample1.pdf | |
output-docx: sample1.docx | |
output-tex: sample1.tex | |
- name: Run the action on sample2 | |
uses: ./ | |
with: | |
input-md: sample2.md | |
output-pdf: sample2.pdf | |
output-docx: sample2.docx | |
output-tex: sample2.tex | |
- name: Run the action on sample3 | |
uses: ./ | |
with: | |
input-md: sample3.md | |
output-pdf: sample3.pdf | |
output-docx: sample3.docx | |
output-tex: sample3.tex | |
- name: Upload Artifact | |
uses: actions/upload-artifact@master | |
with: | |
name: samples | |
path: | | |
sample*.docx | |
sample*.tex | |
sample*.pdf | |
- name: Check in latest render | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Generate latest PDF | |
file_pattern: sample*.pdf | |
if: github.event_name != 'pull_request' |