Skip to content

Add info about default font, and how to think about paper sizes when … #451

Add info about default font, and how to think about paper sizes when …

Add info about default font, and how to think about paper sizes when … #451

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Compile paper
# Provide permissions to read and write the repo, create releases.
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
permissions: write-all
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: [push, pull_request]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Compile paper
uses: xu-cheng/latex-action@master
with:
root_file: paper.tex
docker_image: ghcr.io/xu-cheng/texlive-full:20240901
- name: Compile submission
uses: xu-cheng/latex-action@master
with:
root_file: submission.tex
docker_image: ghcr.io/xu-cheng/texlive-full:20240901
- name: Format Python files with yapf
id: autoyapf
uses: mritunjaysharma394/autoyapf@v2
with:
args: --style pep8 --recursive --in-place .
- name: Release
if: ${{ github.event_name == 'push' }}
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Release ${{ github.run_number }}
tag_name: release-${{ github.run_number }}
files: |
paper.pdf
submission.pdf