Skip to content

Commit

Permalink
Fix Imagemagick installation in Windows CI workflow (Zulko#1643)
Browse files Browse the repository at this point in the history
  • Loading branch information
mondeja authored Aug 18, 2021
1 parent 9349a29 commit 52b0a86
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ jobs:
shell: cmd
if: steps.imagemagick-installer-cache.outputs.cache-hit != 'true'
run: |
echo https://download.imagemagick.org/ImageMagick/download/binaries/ImageMagick-6.9.12-13-Q16-x86-static.exe
curl https://download.imagemagick.org/ImageMagick/download/binaries/ImageMagick-6.9.12-13-Q16-x86-static.exe -o ImageMagick.exe
set IMAGEMAGICK_URL=https://download.imagemagick.org/ImageMagick/download/binaries/ImageMagick-6.9.12-19-Q16-x86-static.exe
echo %IMAGEMAGICK_URL%
curl %IMAGEMAGICK_URL% -o ImageMagick.exe
- name: Install ImageMagick
id: imagemagick-install
Expand Down

0 comments on commit 52b0a86

Please sign in to comment.