@sofit/view-locale 0.1.6 → 0.1.7
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 +3 -0
- package/package.json +1 -1
package/.circleci/config.yml
CHANGED
|
@@ -55,6 +55,9 @@ jobs:
|
|
|
55
55
|
- run:
|
|
56
56
|
name: Publish new version of @sofit/view-locale
|
|
57
57
|
command: npm publish
|
|
58
|
+
- run:
|
|
59
|
+
name: Add github host
|
|
60
|
+
command: mkdir ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config
|
|
58
61
|
- run:
|
|
59
62
|
name: Creating a new tag
|
|
60
63
|
command: git config user.email "desenvolvimento@sofit4.com.br" && git config user.name "Desenvolvimento Sofit AUTO" && N=`cat package.json | grep version | egrep "[0-9].[0-9].[0-9]" -o` && git tag -a v$N -m "New version of @sofit/view-locale $N" && git push --tags
|