Skip to content

Commit 271a498

Browse files
committed
Update package references in build process
The build process for the project EfficientDynamoDb.Credentials.AWSSDK has been updated to remove a local reference and add a pre-release package. The dotnet commands for this process were added under the "Nuget publish" run in the GitHub Actions workflow file.
1 parent 7310f23 commit 271a498

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build_creds_aws_sdk.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
run: dotnet build src/EfficientDynamoDb.Credentials.AWSSDK/EfficientDynamoDb.Credentials.AWSSDK.csproj --configuration Release --no-restore
2929
- name: Nuget publish
3030
run: |
31+
dotnet remove EfficientDynamoDb.Credentials.AWSSDK.csproj reference "..\EfficientDynamoDb\EfficientDynamoDb.csproj"
32+
dotnet add package DevTekVE.EfficientDynamoDb --prerelease
3133
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 .
3234
dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
3335

0 commit comments

Comments
 (0)