Skip to content

Commit

Permalink
fixing warning when adding nuget package
Browse files Browse the repository at this point in the history
  • Loading branch information
lamg committed Jan 11, 2025
1 parent 6ae3f9b commit 15562dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
dotnet publish -c Release
dotnet pack
dotnet nuget push nupkg/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
dotnet nuget push --skip-duplicate nupkg/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
working-directory: ./src/SqliteParserCs
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
Expand All @@ -26,7 +26,7 @@ jobs:
run: |
dotnet publish -c Release
dotnet pack
dotnet nuget push nupkg/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
dotnet nuget push --skip-duplicate nupkg/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
working-directory: ./src/mig
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
Expand All @@ -35,7 +35,7 @@ jobs:
run: |
dotnet publish -c Release
dotnet pack
dotnet nuget push nupkg/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
dotnet nuget push --skip-duplicate nupkg/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
working-directory: ./src/MigLib
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion src/SqliteParserCs/SqliteParserCs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<RootNamespace>SqliteParser</RootNamespace>
<PackageId>SqliteParserCs</PackageId>
<Version>1.0.2</Version>
<Version>1.0.0</Version>
<PackageOutputPath>./nupkg</PackageOutputPath>
<InvariantGlobalization>true</InvariantGlobalization>
<AssemblyName>SqliteParserCs</AssemblyName>
Expand Down

0 comments on commit 15562dd

Please sign in to comment.