Skip to content

Commit

Permalink
Build the r2frida PDF in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Apr 3, 2024
1 parent 9755eaf commit 1a4ba4c
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,33 @@ on:
pull_request:

jobs:
build-pdf:
name: build-pdf
build-r2-pdf:
name: build-r2-pdf
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: r2cheatsheet.tex
- name: Upload PDF file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: PDF
path: r2cheatsheet.pdf
build-r2frida-pdf:
name: build-r2frida-pdf
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: r2frida_cheatsheet.tex
- name: Upload PDF file
uses: actions/upload-artifact@v4
with:
name: PDF
path: r2frida_cheatsheet.pdf

0 comments on commit 1a4ba4c

Please sign in to comment.