2
0
mirror of https://github.com/erlang/spec.git synced 2025-12-06 07:49:28 +00:00

Merge pull request #5 from keyhanjk/master

PDF version of Erlang spec
This commit is contained in:
Lukas Larsson
2024-08-12 21:08:22 +02:00
committed by GitHub

View File

@@ -0,0 +1,29 @@
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