4 Commits

Author SHA1 Message Date
monlor
afd444a45f 2020-03-06 16:08:36 2020-03-06 16:08:36 +08:00
monlor
8721073e15 2020-03-06 15:57:27 2020-03-06 15:57:27 +08:00
monlor
38e6e5beec 2020-03-06 15:50:15 2020-03-06 15:50:15 +08:00
monlor
9c1a15900c 2020-03-06 15:31:51 2020-03-06 15:31:51 +08:00
3 changed files with 14 additions and 5 deletions

View File

@@ -7,12 +7,18 @@ on:
- master
- test
- dev
tags-ignore:
- deploy-*
- test-*
- master-*
ignore-paths:
- '.github'
- 'README.md'
pull_request:
branchs:
- master
- test
- dev
jobs:
publish:

View File

@@ -76,9 +76,12 @@ pack() {
done
gerneral_applist
mkdir -p ${pack_dir}/appstore 2> /dev/null
cp -rf appsbin ${pack_dir}/
cp -rf temp ${pack_dir}/
test ! -d ${pack_dir}/appstore && mkdir -p ${pack_dir}/appstore
test ! -d ${pack_dir}/temp && mkdir -p ${pack_dir}/temp
test ! -d ${pack_dir}/appsbin && mkdir -p ${pack_dir}/appsbin
cp -rf appsbin/* ${pack_dir}/appsbin/
cp -rf temp/* ${pack_dir}/temp/
cp -rf install.sh ${pack_dir}/
mv -f appstore/* ${pack_dir}/appstore/
mv -f applist.txt ${pack_dir}/
@@ -131,7 +134,7 @@ deploy() {
git add .
git commit -m "$(TZ='Asia/Shanghai' date "+%Y-%m-%d %H:%M:%S")" -a
fi
# git lfs push "$3" --all
git lfs push "$3" --all
git push "$3"
}