Skip to content

Commit

Permalink
Switch from Travis CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
SeTSeR committed May 5, 2022
1 parent c62109a commit 39b1e5b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-pdfs.yml
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
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

0 comments on commit 39b1e5b

Please sign in to comment.