Misc: Bump versions #56
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: OsuMemoryDataProvider nuget CI | |
| on: | |
| push: | |
| tags: | |
| - osu_v* | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: build | |
| run: dotnet build -c Release /p:Platform="Any CPU" | |
| - name: Setup Nuget.exe | |
| uses: nuget/setup-nuget@v2 | |
| with: | |
| nuget-api-key: ${{ secrets.NUGET_API_KEY }} | |
| nuget-version: 'latest' | |
| - name: upload sig tester | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: sigMemoryTester-Net48 | |
| path: OsuMemoryDataProviderTester\bin\AnyCPU\Release\net48\* | |
| - name: upload structured tester | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: structuredMemoryTester-Net8 | |
| path: StructuredOsuMemoryProviderTester\bin\AnyCPU\Release\net8.0-windows\* | |
| - name: Nuget Push | |
| run: nuget push OsuMemoryDataProvider\bin\AnyCPU\Release\*.nupkg -Source https://api.nuget.org/v3/index.json |