File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -184,21 +184,21 @@ jobs:
184
184
artifact-ids : ${{ steps.find-artifact.outputs.artifact_id }}
185
185
run-id : ${{ steps.find-artifact.outputs.run_id }}
186
186
github-token : ${{ secrets.GITHUB_TOKEN }}
187
- path : ./phar-file-checksum-old.phar
187
+ path : ./phar-file-checksum-old
188
188
189
189
- name : " Save old checksum"
190
190
id : " old_checksum"
191
- run : echo "md5=$(md5sum phar-file-checksum-old.phar | cut -d' ' -f1)" >> $GITHUB_OUTPUT
191
+ run : echo "md5=$(md5sum phar-file-checksum-old/phpstan .phar | cut -d' ' -f1)" >> $GITHUB_OUTPUT
192
192
193
193
- name : Download new artifact
194
194
uses : actions/download-artifact@v4
195
195
with :
196
196
name : phar-file-checksum
197
- path : ./phar-file-checksum-new.phar
197
+ path : ./phar-file-checksum-new
198
198
199
199
- name : " Save new checksum"
200
200
id : " new_checksum"
201
- run : echo "md5=$(md5sum phar-file-checksum-new.phar | cut -d' ' -f1)" >> $GITHUB_OUTPUT
201
+ run : echo "md5=$(md5sum phar-file-checksum-new/phpstan .phar | cut -d' ' -f1)" >> $GITHUB_OUTPUT
202
202
203
203
- name : " Assert checksum"
204
204
run : |
You can’t perform that action at this time.
0 commit comments