From 3507c724921c5a886336fa481eca30f1bb824064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Wed, 17 Apr 2024 08:52:31 +0200 Subject: [PATCH] ci: explicitly install openssl Let's see if this fixes the missing SSL module in Python... --- .woodpecker.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.woodpecker.yaml b/.woodpecker.yaml index 063390be..c078584b 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -1,3 +1,5 @@ +# -*- yaml -*- + steps: - name: codespell when: @@ -6,6 +8,7 @@ steps: - releases/* image: alpine:edge commands: + - apk add openssl - apk add python3 - apk add py3-pip - python3 -m venv codespell-venv