[latex3-commits] [git/LaTeX3-latex3-latex2e] deploy: Enable deployment: needs key hash adding (fbba987f)

Joseph Wright joseph.wright at morningstar2.co.uk
Tue Oct 1 17:35:00 CEST 2019


Repository : https://github.com/latex3/latex2e
On branch  : deploy
Link       : https://github.com/latex3/latex2e/commit/fbba987f9b4f77a116bd11bfae8e766def673763

>---------------------------------------------------------------

commit fbba987f9b4f77a116bd11bfae8e766def673763
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Tue Oct 1 16:35:00 2019 +0100

    Enable deployment: needs key hash adding


>---------------------------------------------------------------

fbba987f9b4f77a116bd11bfae8e766def673763
 .travis.yml | 32 ++++++++++++++++++++++++++++++--
 1 file changed, 30 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index bb3bc5c8..8c8bea76 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,10 +11,15 @@ cache:
 
 jobs:
   include:
-    - script: l3build check -q -H --show-log-on-error
+    - if: NOT tag IS present
+      script: l3build check -q -H --show-log-on-error
       name: "Test suite"
-    - script: l3build doc -q -H --show-log-on-error
+    - if: NOT tag IS present
+      script: l3build doc -q -H --show-log-on-error
       name: "Documentation"
+    - if: tag IS present
+      script: l3build ctan -H --show-log-on-error
+      name: "Full CTAN build"
 
 notifications:
   email:
@@ -24,3 +29,26 @@ notifications:
     on_failure: always
     on_start:   never
 
+deploy:
+  - provider: releases
+    api_key:
+      secure: [to-do]
+    file_glob: true
+    file:
+      - ./*.zip
+    skip_cleanup: true
+    on:
+      tags: true
+      condition: $TRAVIS_TAG == *-dev
+    prerelease: true
+  - provider: releases
+    api_key:
+      secure: [to-do]
+    file_glob: true
+    file:
+      - ./*.zip
+    skip_cleanup: true
+    on:
+      tags: true
+      condition: $TRAVIS_TAG != *-dev
+    prerelease: false
\ No newline at end of file





More information about the latex3-commits mailing list