diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ced835f..0d159f4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -51,7 +51,7 @@ jobs: $sourceFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "*" $outFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "sourcegrid" New-Item -ItemType Directory -Force -Path $outFolder - $fileName = "sourcegrid-1.0.0.zip" + $fileName = "sourcegrid-1.0.1.zip" Write-Host "Filename: '$fileName'" Write-Host "sourceFolder: '$sourceFolder'" Write-Host "Outfolder: '$outFolder'" @@ -70,8 +70,8 @@ jobs: - name: Create Nuget Packages id: createNupkg run: | - nuget pack SourceGrid.nuspec -Version 1.0.0 - Write-Host "::set-output name=nupkg-sourcegrid::sourcegrid.1.0.0.nupkg" + nuget pack SourceGrid.nuspec -Version 1.0.1 + Write-Host "::set-output name=nupkg-sourcegrid::sourcegrid.1.0.1.nupkg" - name: Archive NuGet Packages uses: actions/upload-artifact@v2 @@ -106,9 +106,9 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: v1.0.0 + tag_name: v1.0.1 #tag_name: ${{ needs.build.outputs.semver }} - release_name: Release v1.0.0 + release_name: Release v1.0.1 body: | ${{ github.event.head_commit.message }} draft: true