We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4b3678 + 54a06ba commit e714832Copy full SHA for e714832
.github/workflows/validate.yml
@@ -184,7 +184,7 @@ jobs:
184
FILES: ${{ needs.gather-relevant-files.outputs.files }}
185
steps:
186
- uses: actions/checkout@v3
187
- - uses: mfinelli/setup-imagemagick@v2
+ - uses: mfinelli/setup-imagemagick@v6
188
- name: Validate Image Dimensions
189
run: |
190
EXIT_VALUE=0
@@ -201,8 +201,8 @@ jobs:
201
fi
202
203
# use imagemagick to pull the dimensions
204
- WIDTH=`identify -ping -format "%w" ${FILE}[0]`
205
- HEIGHT=`identify -ping -format "%h" ${FILE}[0]`
+ WIDTH=`magick identify -ping -format "%w" ${FILE}[0]`
+ HEIGHT=`magick identify -ping -format "%h" ${FILE}[0]`
206
EXPECTED_HEIGHT=$(("$WIDTH"*3/4))
207
208
NOT_4_3_RATIO=false
0 commit comments