2020-03-05 18:31:48

This commit is contained in:
monlor
2020-03-05 18:31:48 +08:00
parent 581824b289
commit 907e76746f
13 changed files with 990 additions and 909 deletions

55
.github/workflows/test.yaml vendored Normal file
View File

@@ -0,0 +1,55 @@
name: Test-CI
on:
push:
paths-ignore:
- 'README.md'
branches:
- 'test1'
pull_request:
paths-ignore:
- 'README.md'
branches:
- 'test1'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Pack files
run: |
mkdir appstore/
mkdir mbfiles/
bash ./tools/gitsync.sh pack all
cp -rf appsbin/ mbfiles/appsbin/
cp -rf appstore/ mbfiles/appstore/
cp -rf temp/ mbfiles/temp/
cp -rf applist.txt mbfiles/
cp -rf install.sh mbfiles/
- name: Push to Github
env:
GH_REF: github.com/monlor/mbfiles
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
cd mbfiles/
git init
git config --local user.email "monlor@qq.com"
git config --local user.name "monlor"
git add .
git commit -m "$(TZ='Asia/Shanghai' date "+%Y-%m-%d %H:%M:%S")" -a
git push "https://${GH_TOKEN}@${GH_REF}" master:test -f
- name: Push to Gitee
uses: s0/git-publish-subdir-action@master
env:
REPO: git@gitee.com:monlor/mbfiles.git
BRANCH: test
FOLDER: mbfiles
SSH_PRIVATE_KEY: ${{ secrets.GE_TOKEN }}
KNOWN_HOSTS_FILE: temp/known_hosts # Needed if target repo is not on github.com