Skip to content

Commit 92a0d8c

Browse files
authored
Restore Travis Release automation (#2279)
* Restore Travis Release automation Temporary, for duration of [this apparent issue](https://github.community/t5/GitHub-Actions/Read-timeout-issues-uploading-large-number-of-files-to-Bintray/m-p/42760#M5104) * Remove gradle release script temporarily * Empty commit to trigger build (Travis webhook was reinstated)
1 parent ad703f0 commit 92a0d8c

File tree

2 files changed

+26
-22
lines changed

2 files changed

+26
-22
lines changed

.github/workflows/gradle-release.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.travis.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
if: branch = master AND tag is present
2+
3+
language: java
4+
jdk:
5+
- openjdk8
6+
7+
sudo: required
8+
services:
9+
- docker
10+
11+
jobs:
12+
include:
13+
- stage: before_deploy
14+
script: .github/workflows/scripts/check_ci_status.sh $TRAVIS_COMMIT
15+
16+
- stage: deploy
17+
sudo: false
18+
services: []
19+
install: skip
20+
script: skip
21+
deploy:
22+
provider: script
23+
script: ./gradlew -Pversion=$TRAVIS_TAG release --scan --no-daemon -i
24+
on:
25+
tags: true
26+
branch: master

0 commit comments

Comments
 (0)