Skip to content

Commit

Permalink
ci(manuscript): use relative path to artifacts
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Aug 22, 2024
1 parent cacc4b0 commit c0c03ce
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/manuscript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,19 @@ jobs:
- name: Render
run: |
make -C reproducibility/manuscript render
ls -alh reproducibility/manuscript/
- name: Compute diff
# if: ${{ inputs.diff_enabled == 'true' }}
continue-on-error: true
run: |
export PATH="/home/runner/.TinyTeX/bin/x86_64-linux:$PATH"
tlmgr install git-latexdiff latexdiff latexpand
make -C reproducibility/manuscript latexdiff
ls -alh reproducibility/manuscript/
- name: Upload artifacts
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4
with:
name: manuscript-${{ github.ref_name }}-${{ github.sha }}
path: |
"${{ github.workspace }}/reproducibility/manuscript/manuscript.*"
"${{ github.workspace }}/reproducibility/manuscript/*diff*"
"reproducibility/manuscript/manuscript.*"
"reproducibility/manuscript/v2*.*"

0 comments on commit c0c03ce

Please sign in to comment.