diff options
author | Norbert Preining <preining@logic.at> | 2019-11-10 06:55:47 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2019-11-10 06:55:47 +0000 |
commit | b5a56cff2ea8f95beb6986b24d89f18564c64ed7 (patch) | |
tree | 17c98053df82fc8d7dda1aad4e5d166056489ed2 | |
parent | 40369ba1f18872e1f09e7d3b69e8d1cc7428dc8e (diff) |
try deploying luahbtex to nextcloud
git-svn-id: svn://tug.org/texlive/trunk@52714 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/.travis.yml | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/Build/source/.travis.yml b/Build/source/.travis.yml index 070901e5161..4692ef6a530 100644 --- a/Build/source/.travis.yml +++ b/Build/source/.travis.yml @@ -110,12 +110,20 @@ matrix: # Rename to the currently built architecture before_deploy: - if [ -n "$package" ]; then sudo mv inst/bin/* inst/bin/$tldir ; tar czvf ${package} -C inst/bin .; fi + - if [ -r inst/bin/*/luahbtex ] ; then cp inst/bin/*/luahbtex luahbtex.$tldir ; fi + - if [ -r inst/bin/*/luajithbtex ] ; then cp inst/bin/*/luajithbtex luajithbtex.$tldir ; fi deploy: - provider: releases - api_key: $GH_TOKEN - file: $package - skip_cleanup: true - on: - tags: true - condition: $package != "" + - provider: releases + api_key: $GH_TOKEN + file: $package + skip_cleanup: true + on: + tags: true + condition: $package != "" + - provider: script + skip_cleanup: true + script: curl --user "TLuploader:$NCPW" -T lua{jit,}hbtex.$tldir https://cloud.preining.info/remote.php/webdav/ + on: + branch: trunk + |