From a5f3a2ba0737ea0ee123a92d1e6328825e52f5f1 Mon Sep 17 00:00:00 2001 From: Roman Yurchak Date: Tue, 18 Aug 2020 10:59:56 +0200 Subject: [PATCH] MNT Put files in a subfolder in the release .tar.bz2 (#743) --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ef4f03385..69be8779a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -153,9 +153,9 @@ jobs: - run: name: Deploy Github Releases command: | - pushd build - tar cjf ../pyodide-build-${CIRCLE_TAG}.tar.bz2 * - popd + cp -r build /tmp/pyodide + cd /tmp/ + tar cjf pyodide-build-${CIRCLE_TAG}.tar.bz2 pyodide/ ghr -t "${GITHUB_TOKEN}" -u "${CIRCLE_PROJECT_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}" -c "${CIRCLE_SHA1}" -delete "${CIRCLE_TAG}" ./pyodide-build-${CIRCLE_TAG}.tar.bz2 - run: