Skip to content

Commit

Permalink
chore: Add GitHub Actions workflow to generate PDF from README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
manthanank committed Jul 1, 2024
1 parent 29c9cfd commit 9824632
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/generate-pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Generate PDF from README.md

on:
push:
branches:
- main
workflow_dispatch:

jobs:
generate-pdf:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Install dependencies
run: npm install markdown-pdf

- name: Convert README.md to PDF
run: |
npx markdown-pdf README.md -o README.pdf
- name: Upload PDF to GitHub Artifacts
uses: actions/upload-artifact@v3
with:
name: README-pdf
path: README.pdf

0 comments on commit 9824632

Please sign in to comment.