mirror of
https://github.com/erlang/spec.git
synced 2026-04-15 01:13:34 +00:00
29 lines
524 B
YAML
29 lines
524 B
YAML
name: Generate PDF as a artifact
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up LaTeX
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y texlive-full
|
|
|
|
- name: Build PDF
|
|
run: |
|
|
make
|
|
|
|
- name: Upload PDF Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: pdf-artifact
|
|
path: erlang-spec.pdf |