mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2024-11-01 15:05:06 +01:00
20 lines
490 B
Bash
Executable File
20 lines
490 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# 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 -e '\[RELEASE CI\]' -e '\[CI RELEASE\]' | wc -c)
|
|
#echo "count is: $filter_count"
|
|
|
|
mkdir -p repo/
|
|
cp server/build/Tachidesk-*.jar repo/
|
|
cp server/build/Tachidesk-*.zip repo/
|
|
|
|
ls repo
|
|
pwd
|
|
|
|
#if [ "$filter_count" -gt 0 ]; then
|
|
# cp server/build/Tachidesk-*.jar repo/
|
|
# cp server/build/Tachidesk-*.zip repo/
|
|
#fi |