mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2024-11-01 15:05:06 +01:00
14 lines
299 B
Bash
Executable File
14 lines
299 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
mkdir -p repo/
|
|
|
|
# Get last commit message
|
|
last_commit_log=$(git log -1 --pretty=format:"%s")
|
|
echo "last commit log: $last_commit_log"
|
|
|
|
filter_count=$(echo "$last_commit_log" | grep -c "[RELEASE CI]" )
|
|
|
|
if [ "$filter_count" -gt 0 ]; then
|
|
cp server/build/Tachidesk-*.jar repo/
|
|
fi |