Skip to content

Commit

Permalink
add create pdf github action
Browse files Browse the repository at this point in the history
  • Loading branch information
futabooo committed May 15, 2020
1 parent d0dbe08 commit 26ea33e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/create_pdf.yml
@@ -0,0 +1,24 @@
name: Create PDF
on: push

jobs:
create_pdf_job:
name: Create PDF
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "8.16.0"
- run: |
node -v
npm install
node ./md2pdf.js
- uses: actions/upload-artifact@v1
with:
name: jp-pdf
path: ./jp/README.pdf
- uses: actions/upload-artifact@v1
with:
name: en-pdf
path: ./en/README.pdf

0 comments on commit 26ea33e

Please sign in to comment.