Skip to content

Commit

Permalink
Support nuget snupkg artifacts (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjohnsonpint authored Feb 8, 2023
1 parent b8d9c16 commit 9a99786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/targets/nuget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const NUGET_DOTNET_BIN = process.env.NUGET_DOTNET_BIN || 'dotnet';
export const DEFAULT_NUGET_SERVER_URL = 'https://api.nuget.org/v3/index.json';

/** A regular expression used to find the package tarball */
const DEFAULT_NUGET_REGEX = /^.*\d\.\d.*\.nupkg$/;
const DEFAULT_NUGET_REGEX = /^.*\d\.\d.*\.s?nupkg$/;

/** Nuget target configuration options */
export interface NugetTargetOptions {
Expand Down

0 comments on commit 9a99786

Please sign in to comment.