From c19b2f14adcdc40b02a722dd57e07e677b22058c Mon Sep 17 00:00:00 2001 From: Leonardo Di Donato Date: Wed, 26 Feb 2020 11:51:50 +0100 Subject: [PATCH] fix(.circleci): version + xenial Co-authored-by: Lorenzo Fontana Signed-off-by: Leonardo Di Donato --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4ca948b8..2210e6e9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -94,8 +94,9 @@ jobs: - run: name: Publish deb command: | - FALCO_VERSION=$(./build/userspace/falco/falco --version | awk '{print $3;}') - jfrog bt u ./build/release/falco-${FALCO_VERSION}.deb falcosecurity/deb/falco/${FALCO_VERSION} --deb bionic/main/amd64 --user poiana --key ${BINTRAY_SECRET} --publish + FALCO_VERSION=$(/build/userspace/falco/falco --version | awk '{print $3;}') + jfrog bt u /build/release/falco-${FALCO_VERSION}.deb falcosecurity/deb/falco-dev/${FALCO_VERSION} --deb bionic/main/amd64 --user poiana --key ${BINTRAY_SECRET} --publish + jfrog bt u /build/release/falco-${FALCO_VERSION}.deb falcosecurity/deb/falco-dev/${FALCO_VERSION} --deb xenial/main/amd64 --user poiana --key ${BINTRAY_SECRET} --publish workflows: version: 2 build_and_test: