From c43de9258246059bf0fb349be7970770567a3518 Mon Sep 17 00:00:00 2001 From: gucio321 Date: Mon, 8 Jan 2024 12:29:57 +0100 Subject: [PATCH] WORKFLOW: build PDF --- .github/workflows/build.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f00f4a74..918ccbaa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,3 +25,33 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} branch: gh-pages + build-pdf: + requires: [build] + runs-on: ubuntu-latest + steps: + - name: check out code + uses: actions/checkout@v4 + with: + fetch-depth: 0 # otherwise, you will failed to push refs to dest repo + - name: install python3 + run: | + sudo apt -y update + sudo apt -y install python3 python3-pip + - name: install python3 dependencies + run: | + python3 -m pip install -r requirements.txt + - name: install latex dependencies + run: | + sudo apt install -y latexmk texlive texlive-fonts-extra + - name: do some trick ;-) + run: | + mv _build/latex/matematyka.pdf .. + git rm -rf * + mv ../matematyka.pdf . + git add . + git commit --amend --no-edit + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: pdf