We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fc5406 commit eda0744Copy full SHA for eda0744
1 file changed
.github/workflows/sync.yml
@@ -33,3 +33,17 @@ jobs:
33
TGIT_REPOSITORY: Tencent_Open_Source/CodeAnalysis
34
TGIT_USERNAME: ${{ secrets.USERNAME }}
35
TGIT_PASSWORD: ${{ secrets.PASSWORD }}
36
+
37
+ - name: Push to Gitee
38
+ run: |
39
+ remote_repo="https://${GITEE_USERNAME}:${GITEE_PASSWORD}@gitee.com/${TGIT_REPOSITORY}.git"
40
+ git remote add gitee "${remote_repo}"
41
+ git show-ref
42
+ git branch --verbose
43
+ git push --all --force gitee
44
+ git push --tags --force gitee
45
+ env:
46
+ GITEE_REPOSITORY: zhang9w0v5/CodeAnalysis
47
+ GITEE_USERNAME: ${{ secrets.GITEE_USERNAME }}
48
+ GITEE_PASSWORD: ${{ secrets.GITEE_PASSWORD }}
49
0 commit comments