fix(maaend): 修复自动代理出现list index out of range与协议空间的配置注入不成功问题 #149 #150 #53
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
| # AUTO-MAS: A Multi-Script, Multi-Config Management and Automation Software | |
| # Copyright © 2025-2026 AUTO-MAS Team | |
| # This file incorporates work covered by the following copyright and | |
| # permission notice: | |
| # | |
| # git-sync Copyright © 2024-present cnb.cool | |
| # https://cnb.cool/cnb/plugins/tencentcom/git-sync | |
| # This file is part of AUTO-MAS. | |
| # AUTO-MAS is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU Affero General Public License as | |
| # published by the Free Software Foundation, either version 3 of | |
| # the License, or (at your option) any later version. | |
| # AUTO-MAS is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty | |
| # of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See | |
| # the GNU Affero General Public License for more details. | |
| # You should have received a copy of the GNU Affero General Public License | |
| # along with AUTO-MAS. If not, see <https://www.gnu.org/licenses/>. | |
| # Contact: DLmaster_361@163.com | |
| name: Sync to CNB | |
| on: | |
| push: | |
| create: | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.ref }} | |
| fetch-depth: 0 | |
| - name: Sync to CNB Repository | |
| uses: docker://tencentcom/git-sync | |
| env: | |
| PLUGIN_TARGET_URL: "https://cnb.cool/AUTO-MAS-Project/AUTO-MAS.git" | |
| PLUGIN_AUTH_TYPE: "https" | |
| PLUGIN_USERNAME: "cnb" | |
| PLUGIN_PASSWORD: ${{ secrets.GIT_PASSWORD }} | |
| PLUGIN_PUSH_TAGS: "true" | |
| PLUGIN_FORCE: "true" |