Upgrade project dependencies and add support for net8.0 #15
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: .NET | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop] | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
dotnet: [8.0.x, 6.0.x] | |
os: [windows-latest] | |
config: [Debug, Release] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "6.0.x" | |
# env: | |
# NUGET_AUTH_TOKEN: ${{secrets.NUGET_AUTH_TOKEN}} | |
- name: Restore dependencies | |
run: dotnet restore | |
# The '--graph' parameter is to address an occasional build error about files being | |
# used by another process the during 'GenerateRuntimeConfigurationFiles' | |
# task: https://github.com/dotnet/msbuild/issues/6690#issuecomment-1553272562 | |
- name: Build | |
run: dotnet build --graph -c ${{ matrix.config }} /p:Platform=x64 --no-restore --verbosity normal | |
#- name: Create the package | |
# id: create-package | |
# run: | | |
# $version = "$(Get-Date -Format "yyyy.MM.dd").${{ github.run_number }}"; | |
# dotnet pack --configuration ${{ env.buildConfig }}; | |
# Compress-Archive bin/Release/netcoreapp*/* bin/Release/netcoreapp*/Mycoshiro.Dataverse.LINQPad.lpx6 -Verbose; | |
# echo "::set-output name=driverFileName::Mycoshiro.Dataverse.LINQPad_$version.lpx6"; | |
# echo "::set-output name=driverFileVersion::$version"; | |
#- name: Create Release | |
# id: create_release | |
# uses: actions/create-release@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# tag_name: ${{ steps.create-package.outputs.driverFileVersion }} | |
# release_name: ${{ steps.create-package.outputs.driverFileName }} | |
# draft: true | |
# prerelease: false | |
#- name: Upload LINQPad Driver | |
# id: release-managed-solution | |
# if: steps.create_release.conclusion == 'success' | |
# uses: actions/upload-release-asset@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# upload_url: ${{ steps.create_release.outputs.upload_url }} | |
# asset_path: bin/Release/netcoreapp*/Mycoshiro.Dataverse.LINQPad.lpx6 | |
# asset_name: ${{ steps.create-package.outputs.driverFileName }} | |
# asset_content_type: application/zip | |
#- name: Publish the package to GPR | |
# run: dotnet nuget push bin/Release/*.nupkg |