Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit edbfb97

Browse files
chore: marking benchmark project as non-packable
1 parent 4951531 commit edbfb97

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test-and-deploy.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ jobs:
159159

160160
- name: Setup Keylocker KSP on windows
161161
run: |
162-
echo "Twilio.${GITHUB_TAG}.nupkg"
163162
curl -X GET https://one.digicert.com/signingmanager/api-ui/v1/releases/Keylockertools-windows-x64.msi/download -H "x-api-key:%SM_API_KEY%" -o Keylockertools-windows-x64.msi
164163
msiexec /i Keylockertools-windows-x64.msi /quiet /qn
165164
smksp_registrar.exe list
@@ -176,8 +175,8 @@ jobs:
176175
run: |
177176
dotnet build -c Release
178177
dotnet pack -c Release
179-
nuget sign Twilio.${{ env.RELEASE_VERSION }}.nupkg -Timestamper http://timestamp.digicert.com -outputdirectory .\NugetSigned -CertificateFingerprint ${{ secrets.SM_CODE_SIGNING_CERT_SHA1_HASH }} -HashAlgorithm SHA256 -Verbosity detailed -Overwrite
180-
nuget push Twilio.${{ env.RELEASE_VERSION }}.nupkg -ApiKey ${{ secrets.NUGET_API_KEY }} -Source https://api.nuget.org/v3/index.json -SkipDuplicate
178+
nuget sign **/*.nupkg -Timestamper http://timestamp.digicert.com -outputdirectory .\NugetSigned -CertificateFingerprint ${{ secrets.SM_CODE_SIGNING_CERT_SHA1_HASH }} -HashAlgorithm SHA256 -Verbosity detailed -Overwrite
179+
nuget push **/*.nupkg -ApiKey ${{ secrets.NUGET_API_KEY }} -Source https://api.nuget.org/v3/index.json -SkipDuplicate
181180
env:
182181
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
183182

test/Twilio.Benchmark/Twilio.Benchmark.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<TargetFramework>net6.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>disable</Nullable>
8+
<IsPackable>false</IsPackable>
89
</PropertyGroup>
910

1011
<ItemGroup>

0 commit comments

Comments
 (0)