This repository was archived by the owner on Aug 17, 2025. It is now read-only.
update rx dlls #12
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: Build dbdata | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| # allow manual trigger | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet publish Dll/dbdata/dbdata.csproj -r win-x64 -c:Release -p:Platform=x64 -o:dbdata | |
| - name : Upload artifacts | |
| uses: actions/upload-artifact@v4.3.5 | |
| with: | |
| # Artifact name | |
| name: dbdata | |
| # A file, directory or wildcard pattern that describes what to upload | |
| path: dbdata/* |