@generation/icons 1.1.4 → 1.1.6
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.
- package/.circleci/config.yml +11 -0
- package/package.json +1 -1
package/.circleci/config.yml
CHANGED
|
@@ -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:
|
|
@@ -103,6 +112,7 @@ workflows:
|
|
|
103
112
|
only:
|
|
104
113
|
- master
|
|
105
114
|
- build-gallery:
|
|
115
|
+
context: aws-creds
|
|
106
116
|
requires:
|
|
107
117
|
- release
|
|
108
118
|
filters:
|
|
@@ -110,6 +120,7 @@ workflows:
|
|
|
110
120
|
only:
|
|
111
121
|
- master
|
|
112
122
|
- deploy_to_dev:
|
|
123
|
+
context: aws-creds
|
|
113
124
|
requires:
|
|
114
125
|
- build-gallery
|
|
115
126
|
filters:
|