Skip to content

更新空无之景成就翻译 #7

更新空无之景成就翻译

更新空无之景成就翻译 #7

Workflow file for this run

name: Sync to Codeup
on:
push:
branches:
- main
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checking out GitHub repository
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Pushing to another repository
env:
TARGET_REPO: '[email protected]:65842f3085f0966eafd087f3/MinecraftTranslation/ModsTranslation.git'
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