diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e9fa469..f9bbd06 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -81,12 +81,11 @@ jobs: $sourceFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "net*" $outFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "sourcegrid" New-Item -ItemType Directory -Force -Path $outFolder - $fileName = "sourcegrid-$($env:GitVersion_MajorMinor).zip" + $fileName = "sourcegrid-v$($env:GitVersion_MajorMinorPatch).zip" Write-Host "Filename: '$fileName'" Write-Host "sourceFolder: '$sourceFolder'" Write-Host "Outfolder: '$outFolder'" Write-Host "::set-output name=sourcegrid::$($fileName)" - Remove-Item $sourceFolder\**\*.pdb -Force -Recurse $outPath = Join-Path $outFolder $fileName Compress-Archive -DestinationPath $outPath -Path $sourceFolder -CompressionLevel Optimal @@ -102,8 +101,8 @@ jobs: - name: Create Nuget Packages id: createNupkg run: | - nuget pack .nuget\SourceGrid.nuspec -Version ($env:GitVersion_MajorMinor) - Write-Host "::set-output name=nupkg-sourcegrid::sourcegrid.($env:GitVersion_MajorMinor).nupkg" + nuget pack .nuget\SourceGrid.nuspec -Version $($env:GitVersion_MajorMinorPatch) + Write-Host "::set-output name=nupkg-sourcegrid::sourcegrid.v$($env:GitVersion_MajorMinorPatch).nupkg" - name: Archive NuGet Packages uses: actions/upload-artifact@v2