Skip to content

Commit 3e38c54

Browse files
committed
devops: Fix download of build artifacts on relese workflow
1 parent caaea64 commit 3e38c54

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/release.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ jobs:
114114

115115
- name: Download build artifacts
116116
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
117+
with:
118+
name: build-artifacts
119+
path: ${{ github.workspace }}/build-artifacts
117120

118121
- name: Authenticate to GitHub registry
119122
run: dotnet nuget add source
@@ -149,6 +152,9 @@ jobs:
149152

150153
- name: Download build artifacts
151154
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
155+
with:
156+
name: build-artifacts
157+
path: ${{ github.workspace }}/build-artifacts
152158

153159
- name: Upload release asset
154160
run: gh release upload ${{ github.event.release.tag_name }}
@@ -174,6 +180,9 @@ jobs:
174180

175181
- name: Download build artifacts
176182
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
183+
with:
184+
name: build-artifacts
185+
path: ${{ github.workspace }}/build-artifacts
177186

178187
- name: Publish to NuGet.org (Releases only)
179188
run: dotnet nuget push

0 commit comments

Comments
 (0)