optimize ci

This commit is contained in:
Neucrack 2020-11-19 14:34:11 +08:00
parent 05ef3e0be1
commit 408345b340
1 changed files with 9 additions and 8 deletions

View File

@ -4,11 +4,12 @@ name: sync code to gitee
# Controls when the action will run. Triggers the workflow on push or pull request # Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch # events but only for the master branch
on: # on:
push: # push:
branches: [ master ] # branches: [ master ]
pull_request: # pull_request:
branches: [ master ] # branches: [ master ]
on: [push, pull_request]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel # A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs: jobs:
@ -27,14 +28,14 @@ jobs:
# Runs a set of commands using the runners shell # Runs a set of commands using the runners shell
- name: sync shell cmd - name: sync shell cmd
run: | run: |
GITEE_GIT_ADDR="git@gitee.com:Sipeed/maixpy_scripts.git"
git fetch --unshallow git fetch --unshallow
SSHPATH="$HOME/.ssh" SSHPATH="$HOME/.ssh"
rm -rf "$SSHPATH" rm -rf "$SSHPATH"
mkdir -p "$SSHPATH" mkdir -p "$SSHPATH"
echo "${{ secrets.GITEE_SYNC_ACCESSS_KEY }}" > "$SSHPATH/id_rsa" echo "${{ secrets.GITEE_SYNC_ACCESSS_KEY }}" > "$SSHPATH/id_rsa"
chmod 600 "$SSHPATH/id_rsa" chmod 600 "$SSHPATH/id_rsa"
ls -al "$SSHPATH/id_rsa"
sudo sh -c "echo StrictHostKeyChecking no >>/etc/ssh/ssh_config" sudo sh -c "echo StrictHostKeyChecking no >>/etc/ssh/ssh_config"
git remote add upstream "git@gitee.com:Sipeed/maixpy_scripts.git" git remote add upstream $GITEE_GIT_ADDR
git push upstream master:master --force --tags git push upstream --all --force