From 88e9171266631ca58ce1605228fea410267e71e1 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 3 Jun 2021 03:50:30 +0530 Subject: [PATCH] Restore source code packing on CircleCI --- .circleci/config.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fba84c6a..4abe485a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -83,7 +83,7 @@ jobs: steps: - checkout - run: - name: "package with packagecore" + name: "auto-generate packages" command: | # Clean up rm -rf ./dist/* @@ -91,8 +91,8 @@ jobs: git archive -o ../${CIRCLE_PROJECT_REPONAME}-${CIRCLE_TAG}.tar.gz --format tar.gz --prefix=${CIRCLE_PROJECT_REPONAME}-${CIRCLE_TAG#v}/ ${CIRCLE_TAG} # Use latest installed python3 from pyenv export PYENV_VERSION="$(pyenv versions | grep -Po '\b3\.\d+\.\d+' | tail -1)" - pip install packagecore - packagecore -c misc/packagecore/packagecore.yaml -o ./dist/ ${CIRCLE_TAG#v} + #pip install packagecore + #packagecore -c misc/packagecore/packagecore.yaml -o ./dist/ ${CIRCLE_TAG#v} # Move source pack to dist mv ../${CIRCLE_PROJECT_REPONAME}-${CIRCLE_TAG}.tar.gz dist/ @@ -119,11 +119,11 @@ workflows: - master jobs: *all-tests -# publish-github-release: -# jobs: -# - package-and-publish: -# filters: -# tags: -# only: /^v.*/ -# branches: -# ignore: /.*/ + publish-github-release: + jobs: + - package-and-publish: + filters: + tags: + only: /^v.*/ + branches: + ignore: /.*/