Misc: Bump versions #30
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: ProcessMemoryDataFinder nuget CI | |
| on: | |
| push: | |
| tags: | |
| - process_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: Nuget Push | |
| run: nuget push ProcessMemoryDataFinder\bin\AnyCPU\Release\*.nupkg -Source https://api.nuget.org/v3/index.json |