-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from Travis CI to GitHub Actions
- Loading branch information
Showing
2 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Build PDFs with hometasks | ||
on: [push] | ||
jobs: | ||
Build-PDFs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: sudo apt-get update | ||
- run: sudo apt-get install -y --no-install-recommends texlive-full pandoc zip python-pygments dot2tex | ||
- name: Clone the repository | ||
uses: actions/checkout@v3 | ||
- run: make pdf || true | ||
- run: zip -r pdfs.zip build/ | ||
- name: Release latest archive on GitHub | ||
uses: "marvinpinto/action-automatic-releases@latest" | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: "latest" | ||
prerelease: true | ||
title: "Latest build" | ||
files: pdfs.zip |
This file was deleted.
Oops, something went wrong.