File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 76
76
key : latex-${{ inputs.input }}-${{ inputs.container-version }}-${{ github.run_id }}
77
77
restore-keys : latex-${{ inputs.input }}-${{ inputs.container-version }}
78
78
79
+ # Note: It appears that we can't pass variables into 'uses:' below to allow callers to
80
+ # request a version of the action. Referencing it by local path breaks external workflows
81
+ # that call to this one.
82
+ # The unfortunate workaround is for this file to be updated to point at specific commits
83
+ # and reference that version of the action file in this reusable workflow.
79
84
# Note: It appears that we can't pass variables into 'uses:' below to allow callers to
80
85
# request a version of the action. Referencing it by local path breaks external workflows
81
86
# that call to this one.
@@ -118,20 +123,21 @@ jobs:
118
123
repo_token : ${{ secrets.GITHUB_TOKEN }}
119
124
file : ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.*.pdf
120
125
tag : ${{ github.ref }}
126
+ asset_name : ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.pdf
121
127
overwrite : true
122
128
file_glob : true
123
129
# Always upload all PDF and log files to the workflow artifacts
124
130
- name : Upload pdfs
125
- uses : actions/upload-artifact@master
131
+ uses : actions/upload-artifact@v4
126
132
with :
127
- name : PDF
133
+ name : ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.pdf
128
134
path : |
129
135
${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.*.pdf
130
136
if : always()
131
137
- name : Upload logs
132
- uses : actions/upload-artifact@master
138
+ uses : actions/upload-artifact@v4
133
139
with :
134
- name : Logs
140
+ name : ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.log
135
141
path : |
136
142
${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}.*.log
137
143
if : always()
You can’t perform that action at this time.
0 commit comments