Fix htmlproofer CI job

Dockerhub image got a major update, and we depended on the `latest` tag.
I now pinned us to version 3, because I version 4 doesn't provide
`--external-only`.

Fixes #124.
This commit is contained in:
Alexander Batischev 2022-12-01 23:12:21 +03:00
parent cfb93f2a7a
commit 7bbfaed61d
No known key found for this signature in database
GPG Key ID: 356961A20C8BFD03
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ pipeline:
event: [push, deployment]
htmlproofer:
image: olikami/htmlproofer:latest # fork of 18fgsa/html-proofer
image: olikami/htmlproofer:3
commands:
- apk add git
- ( git show --no-patch --format=format:%B | grep htmlproofer >/dev/null ) && htmlproofer public/ --external-only --checks-to-ignore ScriptCheck,ImageCheck || true