From 30bcc6f97f4b29b67cd8819f5231fce44be3b72b Mon Sep 17 00:00:00 2001 From: Julius Michaelis Date: Sat, 15 Aug 2020 14:31:34 +0900 Subject: [PATCH] CircleCI: getting tags requires a proper ssh client --- .circleci/config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5cf7de8..65b5778 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,13 +4,12 @@ jobs: docker: - image: debian:bullseye steps: + - run: { name: Install checkout deps, command: apt update && apt install -y git openssh-client } - checkout - run: ./deps.sh - run: ./do.sh - run: tar cJvf kafkacat.txz build/kafkacat build/kafkacat-LICENSES.txt - - store_artifacts: - path: kafkacat.txz - destination: kafkacat.txz + - store_artifacts: { path: kafkacat.txz, destination: kafkacat.txz } publish-github-release: docker: