Skip to content

Commit

Permalink
Update package paths in build_creds_aws_sdk workflow
Browse files Browse the repository at this point in the history
Paths for the "dotnet remove" and "dotnet add" commands have been corrected in .github/workflows/build_creds_aws_sdk.yml. The change ensures proper reference to the EfficientDynamoDb.Credentials.AWSSDK.csproj file when performing operations.
  • Loading branch information
devtekve committed May 11, 2024
1 parent 271a498 commit e846663
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_creds_aws_sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
run: dotnet build src/EfficientDynamoDb.Credentials.AWSSDK/EfficientDynamoDb.Credentials.AWSSDK.csproj --configuration Release --no-restore
- name: Nuget publish
run: |
dotnet remove EfficientDynamoDb.Credentials.AWSSDK.csproj reference "..\EfficientDynamoDb\EfficientDynamoDb.csproj"
dotnet add package DevTekVE.EfficientDynamoDb --prerelease
dotnet remove src/EfficientDynamoDb.Credentials.AWSSDK/EfficientDynamoDb.Credentials.AWSSDK.csproj reference "..\EfficientDynamoDb\EfficientDynamoDb.csproj"
dotnet add src/EfficientDynamoDb.Credentials.AWSSDK/EfficientDynamoDb.Credentials.AWSSDK.csproj package DevTekVE.EfficientDynamoDb --prerelease
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

0 comments on commit e846663

Please sign in to comment.