Skip to content

chore: Correct the release workflow (#945) #261

chore: Correct the release workflow (#945)

chore: Correct the release workflow (#945) #261

Workflow file for this run

on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
name: Build
jobs:
build-xelatex:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: checkout code
- uses: xu-cheng/texlive-action/full@v1
with:
run: |
latexmk main.tex -halt-on-error -time -xelatex
name: build with XeLaTeX
- uses: actions/upload-artifact@v2
with:
path: main.pdf
name: build-xelatex
name: upload build artifacts
build-lualatex:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: checkout code
- uses: xu-cheng/texlive-action/full@v1
with:
run: |
latexmk main.tex -halt-on-error -time -lualatex
name: build with LuaLaTeX
- uses: actions/upload-artifact@v2
with:
path: main.pdf
name: build-lualatex
name: upload build artifacts