Skip to content

Merge pull request #7 from splint3rsec/main #20

Merge pull request #7 from splint3rsec/main

Merge pull request #7 from splint3rsec/main #20

Workflow file for this run

name: Upload PDF build
on:
push:
branches: [ "main" ]
# pull_request:
# branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build LaTeX
uses: ./.github/actions/latexmk
- name: Upload PDF
run: |
git config user.name "github"
git config user.email "[email protected]"
git checkout --orphan build
git reset
git add -f *.pdf
git commit -m "Automatically built via github actions"
git push -f origin build