.github/workflows/pdf_generator.yml #4
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: PDF Generation | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Generate PDF | |
uses: openjournals/pdf-generator-action@v1 | |
with: | |
markdown_file: "paper.md" # 変換したい.mdファイル名に変更 | |
output_pdf: "output.pdf" # 出力されるPDFの名前 | |
- name: Upload PDF Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: generated-pdf | |
path: output.pdf |