@generation/icons 1.1.4 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,7 @@
1
1
  version: 2.1
2
2
  orbs:
3
3
  aws-s3: circleci/aws-s3@2.0.0
4
+ aws-cli: circleci/aws-cli@3.1.5
4
5
  jobs:
5
6
  install_dependencies:
6
7
  docker:
@@ -67,6 +68,14 @@ jobs:
67
68
  - run:
68
69
  name: Build gallery
69
70
  command: npm run build
71
+ - run:
72
+ name: Commit and push changes to package.json
73
+ command: |
74
+ git config user.name "RogerGeneration"
75
+ git config user.email "rogelio@generation.org"
76
+ git add package.json
77
+ git commit -m "chore(release): update package.json with latest @generation/icons"
78
+ git push -q https://${GITHUB_TOKEN}@github.com:digital-generation/generation-icons.git master
70
79
  - persist_to_workspace:
71
80
  root: ~/repo/packages/demo
72
81
  paths:
@@ -110,6 +119,7 @@ workflows:
110
119
  only:
111
120
  - master
112
121
  - deploy_to_dev:
122
+ context: aws-creds
113
123
  requires:
114
124
  - build-gallery
115
125
  filters:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@generation/icons",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "SVG bases React icon components",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {