Skip to content

Commit

Permalink
Correct typos and remove extra line in project files
Browse files Browse the repository at this point in the history
This commit corrects typographical errors in `build.yml` and `build_creds_aws_sdk.yml` and removes a redundant empty line in `EfficientDynamoDb.Tests.csproj`. No functional change was made, improving code cleanliness without affecting functionality.
  • Loading branch information
devtekve committed May 11, 2024
1 parent e9ca307 commit 972146f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ jobs:
- name: Publish to NuGet
if: ${{ github.ref == 'refs/heads/devtekve' || startsWith(github.ref, 'refs/tags/effddb-v') }}
run: |
dotnet pack -p:PackageId=DevTekVE.EfficientDynamoDb -p:Description="This is a fork for own development. Use at your own Risk. No guaruantees are made." --no-build -c Release src/EfficientDynamoDb/EfficientDynamoDb.csproj -o .
dotnet pack -p:PackageId=DevTekVE.EfficientDynamoDb -p:Description="This is a fork for own development. Use at your own Risk. No guarantees are made." --no-build -c Release src/EfficientDynamoDb/EfficientDynamoDb.csproj -o .
dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
2 changes: 1 addition & 1 deletion .github/workflows/build_creds_aws_sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
run: dotnet build src/EfficientDynamoDb.Credentials.AWSSDK/EfficientDynamoDb.Credentials.AWSSDK.csproj --configuration Release --no-restore
- name: Nuget publish
run: |
dotnet pack -p:PackageId=DevTekVE.EfficientDynamoDb.Credentials.AWSSDK -p:Description="This is a fork for own development. Use at your own Risk. No guaruantees are made." --no-build -c Release src/EfficientDynamoDb.Credentials.AWSSDK/EfficientDynamoDb.Credentials.AWSSDK.csproj -o .
dotnet pack -p:PackageId=DevTekVE.EfficientDynamoDb.Credentials.AWSSDK -p:Description="This is a fork for own development. Use at your own Risk. No guarantees are made." --no-build -c Release src/EfficientDynamoDb.Credentials.AWSSDK/EfficientDynamoDb.Credentials.AWSSDK.csproj -o .
dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
1 change: 0 additions & 1 deletion EfficientDynamoDb.Tests/EfficientDynamoDb.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@
<ItemGroup>
<ProjectReference Include="..\src\EfficientDynamoDb\EfficientDynamoDb.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

<None Include="../../README.md" Pack="true" PackagePath="\" />
<None Include="../../README.md" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>

0 comments on commit 972146f

Please sign in to comment.