better clarify what's required for PDA logs #215
This file contains 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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [BelowZero, Subnautica] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0 | |
- name: Build mod | |
run: dotnet build SCHIZO.sln -c ${{ matrix.configuration }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: SCHIZO-${{ matrix.configuration }} | |
path: SCHIZO/bin/${{ matrix.configuration }}/net472/SCHIZO.dll |