mirror of
https://github.com/gotson/komga.git
synced 2025-12-15 21:12:27 +01:00
11 lines
216 B
Bash
Executable file
11 lines
216 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Update version for Gradle
|
|
echo version=$1 >gradle.properties
|
|
|
|
# Build jar
|
|
./gradlew copyWebDist
|
|
./gradlew assemble
|
|
|
|
# Prepare Dockerhub release
|
|
source "$(dirname "$0")/prepare-dockerhub.sh" $1
|