Skip to content

Commit

Permalink
RELEASES: 2.2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdutoit committed May 28, 2023
1 parent 3fe9a9e commit 3845c4c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ jobs:
- name: Pack NuGet Package
run: dotnet pack --configuration Release --include-symbols
- name: Push NuGet Package
run: dotnet nuget push **/bin/Release/**/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_ACCESS }}
run: dotnet nuget push **/bin/Release/**/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_ACCESS }} --skip-duplicate
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
Expand Down
6 changes: 3 additions & 3 deletions ADotNet/ADotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
</PackageReleaseNotes>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AssemblyVersion>2.2.0.1</AssemblyVersion>
<FileVersion>2.2.0.1</FileVersion>
<Version>2.2.0.1</Version>
<AssemblyVersion>2.2.0.2</AssemblyVersion>
<FileVersion>2.2.0.2</FileVersion>
<Version>2.2.0.2</Version>
<PackageLicenseFile>License.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/hassanhabib/ADotNet</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ namespace ADotNet.Models.Pipelines.GithubPipelines.DotNets.Tasks
public class NugetPushTask : GithubTask
{
[YamlMember(Order = 1)]
public string Run = "dotnet nuget push **/bin/Release/**/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_ACCESS }}";
public string Run = "dotnet nuget push **/bin/Release/**/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_ACCESS }} --skip-duplicate";
}
}

0 comments on commit 3845c4c

Please sign in to comment.