diff --git a/.circleci/config.yml b/.circleci/config.yml index c3b2c24f9..425772981 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,8 +12,8 @@ jobs: - node/install: node-version: "16.14.2" - checkout - # - restore_cache: - # key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }} + - restore_cache: + key: neon-wallet-deps-v2{{ checksum "yarn.lock" }} - run: yarn install --ignore-engines --frozen-lockfile --network-timeout 1000000 --network-concurrency 1 --cache-folder ~/.cache/yarn - run: yarn lint - run: yarn flow @@ -22,7 +22,7 @@ jobs: - save_cache: paths: - ~/.cache/yarn - key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }} + key: neon-wallet-deps-v2{{ checksum "yarn.lock" }} build: macos: xcode: "14.0.0" @@ -30,14 +30,14 @@ jobs: - node/install: node-version: "16.14.2" - checkout - # - restore_cache: - # key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }} + - restore_cache: + key: neon-wallet-deps-v2{{ checksum "yarn.lock" }} - run: yarn install --ignore-engines --frozen-lockfile --network-timeout 1000000 --network-concurrency 1 --cache-folder ~/.cache/yarn - run: yarn release:all - save_cache: paths: - ~/.cache/yarn - key: neon-wallet-dependencies-cache-{{ checksum "yarn.lock" }} + key: neon-wallet-deps-v2{{ checksum "yarn.lock" }} - store_artifacts: path: dist destination: build diff --git a/package.json b/package.json index 27719e863..34bb2fd77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Neon", - "version": "2.13.7", + "version": "2.13.8", "main": "./main.js", "description": "Light wallet for NEO blockchain", "homepage": "https://github.com/CityOfZion/neon-wallet",