Skip to content

Commit

Permalink
Restore Travis Release automation (testcontainers#2279)
Browse files Browse the repository at this point in the history
* 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)
  • Loading branch information
rnorth authored and quincy committed May 28, 2020
1 parent 7bd2ea5 commit 93f360b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/gradle-release.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .travis.yml
@@ -0,0 +1,26 @@
if: branch = master AND tag is present

language: java
jdk:
- openjdk8

sudo: required
services:
- docker

jobs:
include:
- stage: before_deploy
script: .github/workflows/scripts/check_ci_status.sh $TRAVIS_COMMIT

- stage: deploy
sudo: false
services: []
install: skip
script: skip
deploy:
provider: script
script: ./gradlew -Pversion=$TRAVIS_TAG release --scan --no-daemon -i
on:
tags: true
branch: master

0 comments on commit 93f360b

Please sign in to comment.