From dc52319859770ae52d1965bb727c14000a96129c Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Mon, 3 Dec 2018 18:57:26 -0800 Subject: [PATCH] Improving circle build --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d49bbd8ba..33997b416 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -51,9 +51,9 @@ jobs: make release mkdir -p artifacts VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2) - GIT_VERSION=$(git describe --exact-match --tags) + # GIT_VERSION=$(git describe --exact-match --tags) echo "${VERSION}" >> artifacts/version - echo "${GIT_VERSION}" >> artifacts/git_version + echo "${CIRCLE_TAG}" >> artifacts/git_version cp ./target/release/wasmer ./artifacts/$(./binary-name.sh) - persist_to_workspace: root: .