Skip to content

Commit d87d725

Browse files
committed
chore(CI): confirm ionitron ident before push
1 parent 9b0d116 commit d87d725

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

scripts/app-base/publish.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ function run {
3535

3636
cd $APPBASE_DIR
3737

38+
git config --global user.email "[email protected]"
39+
git config --global user.name "Ionitron"
40+
3841
git add -A
3942
git commit -am "release: update ionic to v$VERSION"
4043
git push -q origin master

scripts/bower/publish.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ function run {
4646

4747
echo "-- Updating codename in ionic-bower to $CODENAME"
4848
replaceJsonProp "bower.json" "codename" "$CODENAME"
49+
50+
git config --global user.email "[email protected]"
51+
git config --global user.name "Ionitron"
4952

5053
git add -A
5154
git commit -am "release: v$VERSION"

scripts/cdn/publish.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ function run {
4040
python ./generate.py
4141

4242
cd $CDN_DIR
43+
44+
git config --global user.email "[email protected]"
45+
git config --global user.name "Ionitron"
46+
4347
git add -A
4448
git commit -am "release: $VERSION ($VERSION_NAME)"
4549

scripts/release/publish.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ function run {
3333
replaceJsonProp "bower.json" "codename" "$CODENAME"
3434
replaceJsonProp "component.json" "codename" "$CODENAME"
3535

36+
git config --global user.email "[email protected]"
37+
git config --global user.name "Ionitron"
38+
3639
git add -A
3740
git commit -am "release: v$VERSION \"$CODENAME\""
3841
git tag -f v$VERSION

0 commit comments

Comments
 (0)