We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01de14c commit 48e90a2Copy full SHA for 48e90a2
2 files changed
.github/workflows/java_bindings.yml
@@ -201,6 +201,7 @@ jobs:
201
jdkFile: ./zulu21.46.19-ca-fx-jdk21.0.9-linux_x64.tar.gz
202
- name: Build Jar
203
run: |
204
+ bash bindings/java/scripts/findVersion.sh
205
ls -al bindings/java/scripts/
206
mvn versions:set -DnewVersion=$(bash bindings/java/scripts/findVersion.sh) --file bindings/java/pom.xml
207
bash bindings/java/scripts/clojar.sh $(bash bindings/java/scripts/findVersion.sh)
bindings/java/scripts/clojar.sh
@@ -1,7 +1,6 @@
1
missing_vars=()
2
[[ -z "${CLOJARS_USERNAME}" ]] && missing_vars+=("CLOJARS_USERNAME")
3
[[ -z "${CLOJARS_TOKEN}" ]] && missing_vars+=("CLOJARS_TOKEN")
4
-[[ -z "${VERSION}" ]] && missing_vars+=("VERSION")
5
[[ -z "${JAVA_HOME}" ]] && missing_vars+=("JAVA_HOME")
6
7
if [[ ${#missing_vars[@]} -gt 0 ]]; then
0 commit comments