修复:fatal: Too many arguments. #21
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: hutb Windows CI/CD | |
| on: | |
| push: | |
| jobs: | |
| windows-dev: | |
| name: Windows CI/CD | |
| timeout-minutes: 1440 | |
| runs-on: self-hosted:windows | |
| env: | |
| UE4_ROOT: C:\workspace\engine | |
| VCVARS: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: build | |
| run: | | |
| call Build.bat --git-code ${{ secrets.GIT_CODE }} | |
| shell: cmd | |
| - uses: mickem/clean-after-action@v1 | |
| - name: Delete .git folder | |
| run: | | |
| del /f /s /q .git | |
| rd /s /q .git | |
| shell: cmd |