diff options
author | John Olheiser <john.olheiser@gmail.com> | 2022-12-21 13:39:05 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-21 13:39:05 -0600 |
commit | 9a0a4086e27bf1bdbd19da5f173e683065145ea4 (patch) | |
tree | f58fdc26ccc0d6c8e2d8c2a720d16cbefcb4f385 /.drone.yml | |
parent | 145e11bc397ef034cde45520eea96dd17a378434 (diff) | |
download | gitea-9a0a4086e27bf1bdbd19da5f173e683065145ea4.tar.gz gitea-9a0a4086e27bf1bdbd19da5f173e683065145ea4.zip |
fix: update libcurl in docs pipeline (#22204)
Backport https://github.com/go-gitea/gitea/pull/22203
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 8a73e84a00..a0abaa9ccc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -941,7 +941,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 |