pov you haven't used your own library in ages cause it's ass #827
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: .NET | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main, OculusDB-current ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v2 | |
| with: | |
| dotnet-version: 6.0.x | |
| - run: cd OculusDB | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build | |
| - name: Upload Debug net6.0.zip | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: net6.0-Debug | |
| path: OculusDB/bin/Debug/net6.0 | |
| - name: Upload Release net6.0.zip | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: net6.0-Release | |
| path: OculusDB/bin/Release/net6.0 |