updates to object databse, more work on linking system #19
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
| # This workflow will build a .NET project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
| name: .NET | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Restore dependancies | |
| run: dotnet restore MapStudio.sln | |
| - name: Build | |
| run: dotnet build -c Release --no-restore MapStudio.sln | |
| - name: Publish | |
| run: dotnet build -c Release --no-restore MapStudio.sln | |
| - uses: actions/[email protected] | |
| with: | |
| name: OdysseyStudio-Latest | |
| path: Track Studio/bin/Release/net8.0 |