Add "CustomMissionID" for saved games #169
Workflow file for this run
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: "Nightly Build" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| - develop | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| build-type: [DevBuild] # [Debug, DevBuild, Release] | |
| is-cncnet-yr: ['', -CnCNetYR] | |
| is-hardened: ['', -Hardened] | |
| # this dimension is only needed to check whether we're in CnCNet repo | |
| # and exclude hardened build because we may have no access to it | |
| has-private-access: | |
| - ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login == 'CnCNet' || github.event_name == 'push' && github.repository_owner == 'CnCNet' }} | |
| exclude: | |
| - is-hardened: -Hardened | |
| has-private-access: false | |
| steps: | |
| - uses: Metadorius/checkout@d1a22c1aff33852a0154ff5262e4eab45178154c # fixed SpecificSubmodule branch | |
| with: | |
| ssh-key: ${{ secrets.CNCNET_CI_SSH_PRIVATEKEY }} | |
| submodule-directories: | | |
| YRpp | |
| ${{ matrix.has-private-access && 'Private' || '' }} | |
| - name: Build | |
| uses: ./.github/actions/build | |
| with: | |
| build-config: ${{ matrix.build-type }}${{ matrix.is-cncnet-yr }}${{ matrix.is-hardened }} | |
| artifact-name: spawner${{ matrix.is-cncnet-yr }}${{ matrix.is-hardened }}-${{ github.sha }} |