1
0
Fork 0

Rename the Chinese README for https://git.x64dbg.cn

This commit is contained in:
Duncan Ogilvie 2023-07-19 01:01:23 +02:00
parent ea4cc04007
commit ca094df6f1
2 changed files with 24 additions and 0 deletions

24
.github/workflows/gitee.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Gitee sync
on: [push]
jobs:
gitee-push:
runs-on: windows-2019
env:
GITEE_USERNAME: ${{ secrets.GITEE_USERNAME }}
GITEE_TOKEN: ${{ secrets.GITEE_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 100
- name: Push to gitee
run: |
git remote add gitee "https://${{ env.GITEE_USERNAME }}:${{ env.GITEE_TOKEN }}@gitee.com/${{ github.repository }}.git"
git push --force gitee "${{ github.ref }}"
git remote remove gitee