File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ jobs:
121
121
uses : svenstaro/upload-release-action@v2
122
122
with :
123
123
repo_token : ${{ secrets.GITHUB_TOKEN }}
124
- file : ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}. *.pdf
124
+ file : ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}*.pdf
125
125
tag : ${{ github.ref }}
126
126
asset_name : ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.pdf
127
127
overwrite : true
@@ -132,12 +132,12 @@ jobs:
132
132
with :
133
133
name : ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.pdf
134
134
path : |
135
- ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}. *.pdf
135
+ ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}*.pdf
136
136
if : always()
137
137
- name : Upload logs
138
138
uses : actions/upload-artifact@v4
139
139
with :
140
140
name : ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.log
141
141
path : |
142
- ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}. *.log
142
+ ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}*.log
143
143
if : always()
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ function Image (img)
88
88
-- Delete stale copies of this file. This makes it easier to cache only the latest converted pdfs
89
89
-- Don't do this if the "keepstaleimages" variable is set.
90
90
if not PANDOC_WRITER_OPTIONS .variables [" keepstaleimages" ] then
91
- deleteFilesExcept (img .src .. " . *.convert.pdf" , new_filename )
91
+ deleteFilesExcept (img .src .. " *.convert.pdf" , new_filename )
92
92
end
93
93
img .src = new_filename
94
94
end
You can’t perform that action at this time.
0 commit comments