Skip to content

Commit

Permalink
submission: Fixed a copy-paste error in the ci process
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-probst committed Apr 9, 2024
1 parent 68fe527 commit e0b9fa7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ jobs:
retention-days: 90

build_submission:
name: Build the submission pdfs
name: Build the submission PDFs
runs-on: ubuntu-latest
needs: [pre_commit_validation]
if: contains(needs.*.result, 'success')
steps:
- name: Set up Git repository
uses: actions/checkout@v4

- name: Create the submission pdfs
- name: Create the submission PDFs
uses: xu-cheng/texlive-action@v2
with:
run: |
Expand Down
4 changes: 2 additions & 2 deletions submission/create_submission_pdfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def remove_tex_ending(string):


# Helper function to compile the LaTeX files
def compile_latex_files(input, output_folder, style):
def compile_latex_files(input, output_folder):
# Check if input is a valid file without the .tex ending
valid_tex_file(input + ".tex")

Expand Down Expand Up @@ -78,4 +78,4 @@ def compile_latex_files(input, output_folder, style):
input_without_ending = remove_tex_ending(args.input)

# Build the LaTeX-files
compile_latex_files(input_without_ending, args.output, args.style)
compile_latex_files(input_without_ending, args.output)

0 comments on commit e0b9fa7

Please sign in to comment.