Skip to content

Commit

Permalink
change docker image to circleci/node:8
Browse files Browse the repository at this point in the history
  • Loading branch information
og24715 committed Apr 18, 2019
1 parent 5d36f9a commit f3e4e2c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1
jobs:
build:
docker:
- image: debian:stretch
- image: circleci/node:8
steps:
- checkout
- restore_cache:
Expand All @@ -21,7 +21,7 @@ jobs:
key: v1-dependencies-{{ checksum "yarn.lock" }}
create-release:
docker:
- image: debian:stretch
- image: circleci/node:8
steps:
- checkout
- run:
Expand Down
Binary file added chrome.zip
Binary file not shown.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"start": "webpack --watch --mode development",
"build": "webpack --mode production",
"zip": "zip -j chrome.zip chrome/dist/*",
"release": "node versionUpdate.js; yarn build; yarn zip"
"bump": "node versionUpdate.js",
"release": "yarn bump; yarn build; yarn zip"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
Expand Down

0 comments on commit f3e4e2c

Please sign in to comment.