Skip to content

Commit

Permalink
Build Workflow: Fix Root files names
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthi-chaud committed Sep 23, 2023
1 parent 0e9b3bd commit fac150f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ jobs:
uses: xu-cheng/latex-action@v2
with:
root_file: |
$USER_DOC_ROOT/$SRC_NAME
$TECH_DOC_ROOT/$SRC_NAME
"${{ env.USER_DOC_ROOT }}/${{ env.SRC_NAME }}"
"${{ env.TECH_DOC_ROOT }}/${{ env.SRC_NAME }}"
work_in_root_file_dir: true
#TODO Include Font
#TODO Check if needed
#latexmk_shell_escape: true
- name: Rename outputs
run: |
mv $USER_DOC_ROOT/${SRC_NAME/.tex/.pdf} $USER_OUT
mv $TECH_DOC_ROOT/${SRC_NAME/.tex/.pdf} $TECH_OUT
mv "$USER_DOC_ROOT/${SRC_NAME/.tex/.pdf}" $USER_OUT
mv "$TECH_DOC_ROOT/${SRC_NAME/.tex/.pdf}" $TECH_OUT
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit fac150f

Please sign in to comment.