We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1718d2c commit 4a3885fCopy full SHA for 4a3885f
.travis.yml
@@ -2,9 +2,6 @@ language: node_js
2
node_js:
3
- "8"
4
5
-before_install:
6
- - npm i -g npm@latest
7
-
8
before_script:
9
- npm run setup
10
- npm run build
@@ -13,4 +10,11 @@ script:
13
- npm run test
14
11
15
12
after_success:
16
- - ./push-build.sh
+ - git config --global user.email "travis@travis-ci.org"
+ - git config --global user.name "Travis CI"
+ - git branch dist
+ - git add -f "dist/*"
17
+ - git commit -m "Travis Build: $TRAVIS_BUILD_NUMBER" -m "[skip ci]"
18
+ - git remote rm origin
19
+ - git remote add origin https://mauricedoepke:${GH_TOKEN}@github.com/mauricedoepke/webpack-obfuscator.git > /dev/null 2>&1
20
+ - git push origin dist:master
push-build.sh
0 commit comments