Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 53357d1

Browse files
committed
fix travis deploy condition regex
1 parent 811aeb9 commit 53357d1

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ deploy:
4343
secure: sD5fnIVTnTjpjUrxKKQdOG2ltJV2UrAqPbsnOQ6X+YPNZBvEJuC7QZNb5m3N2oHTXDQavGFWVS/83SXmDKcPsKsvcA+3rELDOO6XROAmz+fgOlLPqFFR1Nw0urvX5VQR6kFx2UY1l3caUGZPAiVO37/5Fbv20nxWklSmOEDKgWXsTmv/znoyFh1VBhPNy62oWNVCox20MWr50KzJE3YvXBM0KQU4f5bV7lebh42pQLJfJYAOsq875e+rv0P4G72oE0Tqh/dgyk8n8KUYWmY4DFRKDeTvPST8/wTeiVjIyzzk9qzR8FosbzBKFqDtSKi/KczT13G8/oWv0WLgiKdv4QObPzqZVrxbUTekXZ5B3Qr+0XGaZOF9TpRcUrGwemv2yaZbteZzP60yWbyUdPh638Yt8T9mXhVZat7Xxm6uzyHcLTGceRwPic+ExyGrLJ9VH8OjkYV+VMr2PvcfrVAGmfBAZjx3QHwkl+hrhZaB8w63GZeFBUoFazvds/833jbjRYSSbUpvKFbF4Ec1IRIzJTi345GyshtkQ+8vnQMcHXoPUO+rDARSebSIKeFXPbuiMUn8Hepbb7FqG5Wn6o9uPTJ9MzKnE85Rl7CkCQmFYtc11hduOLRkFqILhJcdmZeDko7XNBQL4n0eg0GnJVU0StT0aZUUCSAWgDOsw+iPkgk=
4444
file: build/libs/*.jar
4545
on:
46-
condition: $TRAVIS_TAG =~ ^v\d+\.\d+\.\d+(-\S*)?$
46+
condition: "$TRAVIS_TAG =~ ^v\d+\.\d+\.\d+(-\S*)?$"
4747
tags: true
4848
- provider: script
4949
script: "./gradlew bintray"
5050
skip_cleanup: true
5151
on:
52-
condition: $TRAVIS_TAG =~ ^v\d+\.\d+\.\d+(-\S*)?$
52+
condition: "$TRAVIS_TAG =~ ^v\d+\.\d+\.\d+(-\S*)?$"
5353
tags: true

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@
88
Java wrapper for the [Iridium Walletd JSON RPC API](https://wiki.ird.cash/iridium_walletd_rpc_call "Iridium Wiki").
99
Method names are 100% compatible but there are some small differences in the signatures (see: [IridiumAPI.java](src/main/java/cash/ird/walletd/IridiumAPI.java)) to avoid signature clashes.
1010
All return types are unwrapped from any kind of envelope and can therefore be used straight away.
11-
11+
1212
## Usage
1313

14+
For `gradle` or `maven` dependency configuration please check the bintray maven repo:
15+
[![Bintray](https://img.shields.io/bintray/v/danielclasen/iridium/walletd.svg)](https://bintray.com/danielclasen/iridium/walletd/_latestVersion)
16+
1417
### Plain Java
15-
//todoc - gradle dependency \
16-
//todoc - maven dependency
1718

1819
Create a new Instance of the [IridiumClient.java](src/main/java/cash/ird/walletd/IridiumClient.java):
1920

0 commit comments

Comments
 (0)