From f50bb5d8a2d06e187bdd3880bf76475c8c82727d Mon Sep 17 00:00:00 2001 From: prasenjeetnath <147582543+prasenjeetnath@users.noreply.github.com> Date: Tue, 17 Oct 2023 15:05:57 +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 99e849b..bada97b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: outputs: semver: ${{ steps.gitversion.outputs.semver }} sourcegrid: ${{ steps.packageBuildResults.outputs.sourcegrid }} - nupkg-sourceGrid: ${{ steps.createNupkg.outputs.nupkg-Sourcegrid }} + nupkg-sourceGrid: ${{ steps.createNupkg.outputs.nupkg-sourcegrid }} steps: @@ -76,7 +76,7 @@ jobs: - name: Archive NuGet Packages uses: actions/upload-artifact@v2 with: - name: sourceGrid + name: nuget-sourceGrid path: | *.nupkg @@ -94,7 +94,7 @@ jobs: - name: Download NuGet Package uses: actions/download-artifact@v2 with: - name: SourceGrid + name: nuget-sourceGrid - name: Debug run: | @@ -131,8 +131,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./${{ needs.build.outputs.nupkg-SourceGrid }} - asset_name: ${{ needs.build.outputs.nupkg-SourceGrid }} + asset_path: ./${{ needs.build.outputs.nupkg-sourceGrid }} + asset_name: ${{ needs.build.outputs.nupkg-sourceGrid }} asset_content_type: application/zip