🚀 .NET 8 and redid Sink config extensions #12
Workflow file for this run
This file contains 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: Pull Request | |
on: | |
pull_request: | |
branches: [main] | |
env: | |
DOTNET_NOLOGO: true | |
jobs: | |
build_and_pack_release: | |
name: Build and pack release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build version prefix/suffix | |
run: | | |
echo "VERSION_PREFIX=${{ github.run_number }}.0.0" >> $GITHUB_ENV | |
echo "VERSION_SUFFIX=alpha" >> $GITHUB_ENV | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
- run: dotnet restore --verbosity minimal | |
- run: dotnet build --configuration Release -p:ContinuousIntegrationBuild=true -p:VersionPrefix=$VERSION_PREFIX --version-suffix $VERSION_SUFFIX | |
- run: dotnet pack --configuration Release --no-build --output ./artifacts -p:VersionPrefix=$VERSION_PREFIX --version-suffix $VERSION_SUFFIX -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg | |
- name: Publish artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: NuGetPackage.${{ env.VERSION_PREFIX }}-${{ env.VERSION_SUFFIX }}.nupkg.zip | |
path: ./artifacts/* |