OneDrive同时出现两个托盘图标的解决办法 #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sync github repo to gitee | |
on: push | |
jobs: | |
mirror-sync: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Mirror the Github repo(s) to Gitee. | |
uses: Yikun/hub-mirror-action@master | |
with: | |
src: 'github/${{ github.repository_owner }}' | |
dst: 'gitee/${{ github.repository_owner }}' | |
dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} | |
dst_token: ${{ secrets.GITEE_TOKEN }} | |
account_type: org | |
static_list: ${{ github.event.repository.name }} | |
force_update: true |