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

View File

@@ -1,41 +1,11 @@
name: CI
# on:
# push:
# branchs:
# - 'test'
# - 'master'
# pull_request:
# branchs:
# - 'test'
# - 'master'
# paths:
# - 'apps/**'
# - 'appsbin/**'
# - 'temp/**'
# on: [push, pull_request]
on:
push:
paths-ignore:
- 'README.md'
- 'tools'
- '.github'
branchs:
- 'test'
- 'master'
pull_request:
paths-ignore:
- 'README.md'
- 'tools'
- '.github'
branchs:
- 'test'
- 'master'
on: [push, pull_request]
jobs:
publish:
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
@@ -53,10 +23,8 @@ jobs:
cp -rf install.sh mbfiles/
- name: Push changes
env:
GH_REF: github.com/monlor/mbfiles
GE_REF: gitee.com/monlor/mbfiles
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GE_TOKEN: ${{ secrets.GE_TOKEN }}
GH_REF: ${{ secrets.GH_REF }}
CO_REF: ${{ secrets.CO_REF }}
BRANCH_NAME: $(cd .. && git branch | awk '$1 == "*"{print $2}')
run: |
cd mbfiles/
@@ -65,8 +33,5 @@ jobs:
git config --local user.name "monlor"
git add .
git commit -m "$(TZ='Asia/Shanghai' date "+%Y-%m-%d %H:%M:%S")" -a
eval "git branch | grep -q "${BRANCH_NAME}" || git checkout -b "${BRANCH_NAME}""
eval "git push "https://${GH_TOKEN}@${GH_REF}" "${BRANCH_NAME}":"${BRANCH_NAME}" -f"
echo "${GE_TOKEN}" > /root/.ssh/id_rsa
chmod 600 /root/.ssh/id_rsa
eval "git push "https://${GE_REF}" "${BRANCH_NAME}":"${BRANCH_NAME}" -f"
eval "git push "${GH_REF}" master:"${BRANCH_NAME}" -f"
eval "git push "${CO_REF}" master:"${BRANCH_NAME}" -f"

55
.github/workflows/master.yml vendored Normal file
View File

@@ -0,0 +1,55 @@
name: Master-CI
on:
push:
paths-ignore:
- 'README.md'
branches:
- 'master1'
pull_request:
paths-ignore:
- 'README.md'
branches:
- 'master1'
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:master -f
- name: Push to Gitee
uses: s0/git-publish-subdir-action@master
env:
REPO: git@gitee.com:monlor/mbfiles.git
BRANCH: master
FOLDER: mbfiles
SSH_PRIVATE_KEY: ${{ secrets.GE_TOKEN }}
KNOWN_HOSTS_FILE: temp/known_hosts # Needed if target repo is not on github.com

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