diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml new file mode 100644 index 0000000..157e7a4 --- /dev/null +++ b/.github/workflows/sync.yml @@ -0,0 +1,28 @@ +name: Sync to Codeup + +on: + push: + branches: + - main + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - name: Checking out GitHub repository + uses: actions/checkout@v4.1.1 + with: + fetch-depth: 0 + + - name: Pushing to another repository + if: ${{ secrets.TARGET_REPO }} + env: + TARGET_REPO: ${{ secrets.TARGET_REPO }} + SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} + run: | + mkdir -p ~/.ssh + echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa + chmod 600 ~/.ssh/id_rsa + ssh-keyscan -t rsa codeup.aliyun.com >> ~/.ssh/known_hosts + git remote add target "$TARGET_REPO" + git push target HEAD:main --force \ No newline at end of file