Publish pre-release version #6
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: Publish pre-release version | |
| on: | |
| workflow_dispatch | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| dotnet-version: ['9.0.x'] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup .NET Code SDK ${{ matrix.dotnet-version }} | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: ${{ matrix.dotnet-version }} | |
| - name: Install dependencies | |
| run: dotnet restore | |
| - name: Test | |
| run: dotnet test --no-restore --collect:"XPlat Code Coverage" | |
| - name: Set build label | |
| run: echo "DEVLABEL=$(date +'%Y%m%d')" >> $GITHUB_ENV | |
| - name: Build source generator | |
| run: dotnet build src/generator/ -c Release --no-restore -o analyzers | |
| - name: Pack core library | |
| run: dotnet pack src/lib -c Release --no-restore -p:VersionSuffix=dev.${{ env.DEVLABEL }}.${{ github.run_number }} -o ./pack | |
| - name: Publish packages to NuGet | |
| run: dotnet nuget push ./pack/*[^.symbols].nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_ORG_PUSH_KEY }} |