diff options
author | John Olheiser | 2022-12-21 13:45:32 -0600 |
---|---|---|
committer | GitHub | 2022-12-21 13:45:32 -0600 |
commit | 9914b21493784793fb4a3660369befb98a9bd073 (patch) | |
tree | 3f5ad59af93ceb9bd1a54f46dcca980ab12bcb95 /.drone.yml | |
parent | c403e2f1cfe3aa248cf8139b5d552a5fc22902d2 (diff) |
fix: update libcurl in docs pipeline (#22203)
updating libcurl fixes the mismatch between curl and libcurl
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index 4fa420105..48ba3e8f9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -931,7 +931,8 @@ steps: image: plugins/hugo:latest pull: always commands: - - apk add --no-cache make bash curl + # https://github.com/drone-plugins/drone-hugo/issues/36 + - apk upgrade --no-cache libcurl && apk add --no-cache make bash curl - cd docs - make trans-copy clean build |