We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c62109a commit 39b1e5bCopy full SHA for 39b1e5b
.github/workflows/build-pdfs.yml
@@ -0,0 +1,20 @@
1
+name: Build PDFs with hometasks
2
+on: [push]
3
+jobs:
4
+ Build-PDFs:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - run: sudo apt-get update
8
+ - run: sudo apt-get install -y --no-install-recommends texlive-full pandoc zip python-pygments dot2tex
9
+ - name: Clone the repository
10
+ uses: actions/checkout@v3
11
+ - run: make pdf || true
12
+ - run: zip -r pdfs.zip build/
13
+ - name: Release latest archive on GitHub
14
+ uses: "marvinpinto/action-automatic-releases@latest"
15
+ with:
16
+ repo_token: "${{ secrets.GITHUB_TOKEN }}"
17
+ automatic_release_tag: "latest"
18
+ prerelease: true
19
+ title: "Latest build"
20
+ files: pdfs.zip
.travis.yml
0 commit comments