From f34f38df306d4ab0cb26fe1b7882b199207cb4a2 Mon Sep 17 00:00:00 2001 From: Josh Ayers Date: Wed, 16 Apr 2025 16:35:39 -0700 Subject: [PATCH 1/4] Added a Github actions file to build the pdf. --- .github/workflows/build_pdf.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build_pdf.yml diff --git a/.github/workflows/build_pdf.yml b/.github/workflows/build_pdf.yml new file mode 100644 index 0000000..027fc7e --- /dev/null +++ b/.github/workflows/build_pdf.yml @@ -0,0 +1,19 @@ +name: unit-tests + +on: [push] + +jobs: + build_latex: + runs_on: ubuntu-latest + steps: + - name: Set up Git repository + uses: actions/checkout@v4 + - name: Compile LaTeX document + uses: xu-cheng/latex-action@v3 + with: + root_file: rules.tex + - name: Upload PDF file + uses: actions/upload-artifact@v4 + with: + name: PDF + path: rules.pdf From d838631add2e2829b6c71837d0f14ab6fa17ea96 Mon Sep 17 00:00:00 2001 From: Josh Ayers Date: Wed, 16 Apr 2025 16:37:00 -0700 Subject: [PATCH 2/4] Fixed typo. --- .github/workflows/build_pdf.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_pdf.yml b/.github/workflows/build_pdf.yml index 027fc7e..a11f402 100644 --- a/.github/workflows/build_pdf.yml +++ b/.github/workflows/build_pdf.yml @@ -4,7 +4,7 @@ on: [push] jobs: build_latex: - runs_on: ubuntu-latest + runs-on: ubuntu-latest steps: - name: Set up Git repository uses: actions/checkout@v4 From 3b12e599872ab6569ca56ae53c8221d2dadcff4b Mon Sep 17 00:00:00 2001 From: Josh Ayers Date: Wed, 16 Apr 2025 16:51:03 -0700 Subject: [PATCH 3/4] Replace htmladdnormallink with href. --- .github/workflows/build_pdf.yml | 2 +- EntryReqsProcs.tex | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_pdf.yml b/.github/workflows/build_pdf.yml index a11f402..c7bd09a 100644 --- a/.github/workflows/build_pdf.yml +++ b/.github/workflows/build_pdf.yml @@ -1,4 +1,4 @@ -name: unit-tests +name: build-latex on: [push] diff --git a/EntryReqsProcs.tex b/EntryReqsProcs.tex index 8ec8969..0f3248a 100644 --- a/EntryReqsProcs.tex +++ b/EntryReqsProcs.tex @@ -11,7 +11,7 @@ \section{Race Entry Requirements} \subsection{Entry} -An entry shall consist of one buggy, one team, and one alternate team. No pusher may compete on more than one entry on any single day of competition. No driver may compete on more than one entry in each class of race competition (one men's race and one women's race) on any single day of competition. No buggy may be used by more than one entry in each class of race competition (one men's race and one women's race) on any single day of competition. All alternate teams are also bound by these conditions. Each organization must submit to the Sweepstakes Chairman, or anyone designated by that Chairman, a list for each of its entries. The list must include the entry's buggy, all of the members of the entry's team, and all of the members of the entry's alternate team. All entry lists must be submitted by noon on the day before the preliminary races are scheduled to be held. In entering members, Sweepstakes will abide by the \htmladdnormallink{CMU Statement of Assurance}{http://www.cmu.edu/policies/documents/SoA.html}. +An entry shall consist of one buggy, one team, and one alternate team. No pusher may compete on more than one entry on any single day of competition. No driver may compete on more than one entry in each class of race competition (one men's race and one women's race) on any single day of competition. No buggy may be used by more than one entry in each class of race competition (one men's race and one women's race) on any single day of competition. All alternate teams are also bound by these conditions. Each organization must submit to the Sweepstakes Chairman, or anyone designated by that Chairman, a list for each of its entries. The list must include the entry's buggy, all of the members of the entry's team, and all of the members of the entry's alternate team. All entry lists must be submitted by noon on the day before the preliminary races are scheduled to be held. In entering members, Sweepstakes will abide by the \href{http://www.cmu.edu/policies/documents/SoA.html}{CMU Statement of Assurance}. \subsection{Team} From 9aa9cb831493ce7301d52a97159e9e58b1724a72 Mon Sep 17 00:00:00 2001 From: Josh Ayers Date: Wed, 16 Apr 2025 17:55:02 -0700 Subject: [PATCH 4/4] Renamed file. --- .github/workflows/{build_pdf.yml => build_latex.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{build_pdf.yml => build_latex.yml} (100%) diff --git a/.github/workflows/build_pdf.yml b/.github/workflows/build_latex.yml similarity index 100% rename from .github/workflows/build_pdf.yml rename to .github/workflows/build_latex.yml