mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
Create split.yml
This commit is contained in:
parent
e4f8179de7
commit
008d30b7aa
27
.github/workflows/split.yml
vendored
Normal file
27
.github/workflows/split.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
name: Split Repos
|
||||||
|
|
||||||
|
on: [ workflow_dispatch ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
split:
|
||||||
|
if: github.repository == 'mineadmin/components'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
SSH_PRIVATE_KEY: ${{ secrets.SPLIT_PRIVATE_KEY }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Setup Private Key
|
||||||
|
run: |
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
|
||||||
|
chmod 600 ~/.ssh/id_rsa
|
||||||
|
echo "StrictHostKeyChecking no" >> ~/.ssh/config
|
||||||
|
- name: Split And Push
|
||||||
|
run: |
|
||||||
|
git config pull.rebase true
|
||||||
|
git config --global user.email "49744633+zds-s@users.noreply.github.com"
|
||||||
|
git config --global user.name "Zds"
|
||||||
|
./bin/split-linux.sh
|
Loading…
x
Reference in New Issue
Block a user