Skip to content

Commit ed94e85

Browse files
authored
Merge pull request #178 from TileDB-Inc/victorgiannakouris/fix_release_error
Fix: GitHub Release Issue
2 parents c0255da + 132c7a3 commit ed94e85

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ stages:
118118
119119
./gradlew assemble
120120
121-
cp build/libs/*.jar $BUILD_BINARIESDIRECTORY
121+
mkdir $BUILD_BINARIESDIRECTORY/jars
122+
cp ./build/libs/*.jar $BUILD_BINARIESDIRECTORY/jars
122123
123124
- task: GithubRelease@0
124125
displayName: 'GitHub Release'

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group 'io.tiledb'
12-
version '0.2.8-SNAPSHOT'
12+
version '0.3.0-SNAPSHOT'
1313

1414
repositories {
1515
jcenter()

0 commit comments

Comments
 (0)