Fix: Update client launcher and AI modules #2
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: AutoBuild | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| runPush: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Trigger BE build | |
| run: | | |
| git clone --depth=1 --branch=master https://github.com/Jackson11500/Mindustry-CN-ARC-Builds | |
| cd Mindustry-CN-ARC-Builds | |
| BNUM=$(($GITHUB_RUN_NUMBER + 30000)) | |
| git tag ${BNUM} | |
| git config --global user.name "Github Actions" | |
| git push https://Jackson11500:${{ secrets.API_TOKEN_GITHUB_2 }}@github.com/Jackson11500/Mindustry-CN-ARC-Builds ${BNUM} |