Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,21 +154,21 @@ jobs:
pip install requests markdown argparse

- name: Download NuGet Abstractions
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
continue-on-error: false
with:
name: nuget-Be.Vlaanderen.Basisregisters.NisCodeService.Abstractions-${{ needs.set-release-version.outputs.version }}
path: dist/nuget/

- name: Download NuGet DynamoDb
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
continue-on-error: false
with:
name: nuget-Be.Vlaanderen.Basisregisters.NisCodeService.DynamoDb-${{ needs.set-release-version.outputs.version }}
path: dist/nuget/

- name: Download NuGet HardCoded
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
continue-on-error: false
with:
name: nuget-Be.Vlaanderen.Basisregisters.NisCodeService.HardCoded-${{ needs.set-release-version.outputs.version }}
Expand Down Expand Up @@ -217,19 +217,19 @@ jobs:
run: dotnet --info

- name: Download NuGet Abstractions package
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: nuget-Be.Vlaanderen.Basisregisters.NisCodeService.Abstractions-${{ needs.release.outputs.version }}
path: ~/

- name: Download NuGet DynamoDb package
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: nuget-Be.Vlaanderen.Basisregisters.NisCodeService.DynamoDb-${{ needs.release.outputs.version }}
path: ~/

- name: Download NuGet HardCoded package
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: nuget-Be.Vlaanderen.Basisregisters.NisCodeService.HardCoded-${{ needs.release.outputs.version }}
path: ~/
Expand Down
Loading