Skip to content

Commit

Permalink
print output filename when calculating
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfenner committed Sep 10, 2024
1 parent 4f19815 commit ddded38
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/render.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
id: gen_output_name
run: |
filename=$(basename ${{ inputs.input }})
echo OUTPUT_FILENAME="${filename%.*}" >> "$GITHUB_OUTPUT"
filename="${filename%.*}"
echo OUTPUT_FILENAME="${filename}" >> "$GITHUB_OUTPUT"
echo output filename: ${filename}
# Cache the LaTeX files. Use input file and container version in the cache
# key so that the cache is invalidated upon file change or container
Expand Down

0 comments on commit ddded38

Please sign in to comment.