Travis-CI: automatically detect filename to deploy

experimental
Kirill Vainer 10 years ago
parent b6a2efd47c
commit 67d982a64c
  1. 6
      .travis.yml

@ -26,11 +26,15 @@ script:
- ./gradlew check - ./gradlew check
- ./gradlew createZipDistribution - ./gradlew createZipDistribution
before_deploy:
- export RELEASE_DIST=$(ls build/distributions/*.zip)
deploy: deploy:
provider: releases provider: releases
api_key: api_key:
secure: PuEsJd6juXBH29ByITW3ntSAyrwWs0IeFvXJ5Y2YlhojhSMtTwkoWeB6YmDJWP4fhzbajk4TQ1HlOX2IxJXSW/8ShOEIUlGXz9fHiST0dkSM+iRAUgC5enCLW5ITPTiem7eY9ZhS9miIam7ngce9jHNMh75PTzZrEJtezoALT9w= secure: PuEsJd6juXBH29ByITW3ntSAyrwWs0IeFvXJ5Y2YlhojhSMtTwkoWeB6YmDJWP4fhzbajk4TQ1HlOX2IxJXSW/8ShOEIUlGXz9fHiST0dkSM+iRAUgC5enCLW5ITPTiem7eY9ZhS9miIam7ngce9jHNMh75PTzZrEJtezoALT9w=
file: build/distributions/jME3.1.0_snapshot-github_2015-08-02.zip file_glob: true
file: "${RELEASE_DIST}"
skip_cleanup: true skip_cleanup: true
on: on:
repo: jMonkeyEngine/jmonkeyengine repo: jMonkeyEngine/jmonkeyengine

Loading…
Cancel
Save