Skip to content

Commit 78b60e1

Browse files
authored
commented out ls -R
1 parent ff673f0 commit 78b60e1

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

.travis.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,37 +8,36 @@ matrix:
88
- jdk: oraclejdk9
99

1010
script:
11-
# - git config --global push.default simple
12-
# - export GIT_TAG=$TRAVIS_BRANCH.$TRAVIS_BUILD_NUMBER
11+
- git config --global push.default simple
12+
- export GIT_TAG=$TRAVIS_BRANCH.$TRAVIS_BUILD_NUMBER
1313
- gradle clean build
1414
- gradle dist
1515
- tar -zcf hello_world_test_reports.tar.gz build/reports
1616
- tar -zcf hello_world_executable_distributions.tar.gz build/distributions
17-
- ls -R
17+
# - ls -R
1818

1919
before_deploy:
2020
- git config --global user.email "builds@travis-ci.com"
2121
- git config --global user.name "Travis CI"
2222
- export GIT_TAG=$TRAVIS_BRANCH.$TRAVIS_BUILD_NUMBER
23-
# - msg= "Just generated GIT_TAG for $TRAVIS_BRANCH.$TRAVIS_BUILD_NUMBER"
2423
- echo "Just generated GIT_TAG for $TRAVIS_BRANCH.$TRAVIS_BUILD_NUMBER" >> $TRAVIS_BUILD_DIR/build.txt
2524
- git tag $GIT_TAG -a -m "Generated tag from TravisCI for build $TRAVIS_BUILD_NUMBER"
2625
- git push -q https://$GITPERM@github.com/drlehr/Java_Gradle_Hello_World --tags
27-
- ls -R
26+
# - ls -R
2827

2928
deploy:
30-
skip_cleanup: true
3129
provider: releases
3230
api_key:
3331
secure: $GITPERM
3432
file:
3533
- README.md
3634
- hello_world_test_reports.tar.gz
3735
- hello_world_executable_distributions.tar.gz
38-
36+
skip_cleanup: true
3937
on:
40-
all_branches: true
4138
tags: false
39+
all_branches: true
40+
4241

4342
branches:
4443
except:

0 commit comments

Comments
 (0)