From 0fd45a7ba07779bbcef809947db79abb4d0b160b Mon Sep 17 00:00:00 2001 From: Manthan Ankolekar Date: Sat, 10 Aug 2024 21:15:00 +0530 Subject: [PATCH] chore: Update GitHub workflow to convert README to PDF --- .github/workflows/md-to-pdf.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/md-to-pdf.yml diff --git a/.github/workflows/md-to-pdf.yml b/.github/workflows/md-to-pdf.yml deleted file mode 100644 index cf00608..0000000 --- a/.github/workflows/md-to-pdf.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Convert README to PDF - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - convert-readme: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Install Pandoc - run: sudo apt-get install -y pandoc - - - name: Install LaTeX - run: sudo apt-get install -y texlive - - - name: Convert README.md to README.pdf - run: pandoc README.md -o README.pdf --resource-path=.:assets - - - name: Upload README.pdf - uses: actions/upload-artifact@v2 - with: - name: README-pdf - path: README.pdf \ No newline at end of file