Sync with Gitee #502
This file contains hidden or 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 with Gitee | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # 每天午夜(UTC时间)运行 | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Sync with Gitee | |
| run: | | |
| git remote add gitee https://AItrainee:[email protected]/AItrainee/Traffic-Sign-Recognition-PyQt5-YOLOv5-GUI.git | |
| git push --force gitee main |