From e1716ee05d7c666b0859c02694993f151335d998 Mon Sep 17 00:00:00 2001 From: prasenjeetnath <147582543+prasenjeetnath@users.noreply.github.com> Date: Tue, 17 Oct 2023 15:31:40 +0530 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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