From 9735b5cfae5d58aa6336285e19226fa1de432698 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 25 Aug 2024 23:35:49 +1000 Subject: [PATCH] feat: specify cacert path - /etc/ssl/certs/ca-certificates.crt is passed to all containers --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 3436a33..1cd29a3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -26,7 +26,7 @@ steps: commands: - > for rpm in /drone/src/rpmbuild/RPMS/*/*.rpm; do - curl --user droneci:${GITEA_TOKEN} --upload-file $rpm https://git.query.consul/api/v1/packages/unkin/rpm/almalinux/el8/upload + curl --user droneci:${GITEA_TOKEN} --cacert /etc/ssl/certs/ca-certificates.crt --upload-file $rpm https://git.query.consul/api/v1/packages/unkin/rpm/almalinux/el8/upload done when: branch: -- 2.47.3