-
Notifications
You must be signed in to change notification settings - Fork 17
33 lines (33 loc) · 864 Bytes
/
main.yml
File metadata and controls
33 lines (33 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: generate-pdf-actions
on: [push]
jobs:
concurrency-primer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
continue-on-error: true
- name: install-texlive
run: |
sudo apt-get update
sudo apt-get install -q -y texlive-full texlive-latex-base
shell: bash
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: install-pygments
run: |
python -m pip install --upgrade pip
pip install pygments
- name: make
run: make
- name: Create and Upload Release
id: release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
./concurrency-primer.pdf
tag_name: ${{ github.ref_name }}
body: |
Changes in this Release