From 1d579b5de32fa6ad2bf6f19c7f79fe5497e913af Mon Sep 17 00:00:00 2001 From: Michael Henderson Date: Thu, 26 Sep 2024 11:31:09 -0700 Subject: [PATCH] asset_name is not required when using wildcard on asset_path --- .github/workflows/dotnet-build-and-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-build-and-release.yml b/.github/workflows/dotnet-build-and-release.yml index e13dd49..2bb725f 100644 --- a/.github/workflows/dotnet-build-and-release.yml +++ b/.github/workflows/dotnet-build-and-release.yml @@ -117,7 +117,7 @@ jobs: $zipPath = "$outputDir\${{ env.REPO_NAME }}_$platform.zip" Compress-Archive -Path $sourcePath -DestinationPath $zipPath -Force -Verbose } - + Get-ChildItem -File -Path $outputDir # - name: Check for manifest in zip files # if: success() && env.CREATE_RELEASE == 'True' && inputs.integration_type == 'orchestrator' # shell: pwsh @@ -154,7 +154,7 @@ jobs: with: upload_url: ${{ inputs.release_url }} asset_path: "${{ github.workspace }}/zip/Keyfactor/*" - asset_name: ${{ env.REPO_NAME}}_${{ inputs.release_version }}.zip + # asset_name: ${{ env.REPO_NAME}}_${{ inputs.release_version }}.zip asset_content_type: application/zip