Skip to content

Commit c243dd9

Browse files
committed
Compensate for bug at actions/download-artifact#426
1 parent 254e446 commit c243dd9

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,16 @@ jobs:
271271
steps:
272272
- name: Tune GitHub-hosted runner network
273273
uses: smorimoto/tune-github-hosted-runner-network@v1
274-
- name: Download artifacts
274+
- name: Download package artifacts
275275
uses: actions/download-artifact@v8
276+
with:
277+
name: packages
278+
path: packages
279+
- name: Download documentation artifacts
280+
uses: actions/download-artifact@v8
281+
with:
282+
name: documentation
283+
path: documentation
276284
- name: Publish to GitHub Packages
277285
if: ${{ github.event_name == 'push' || github.event_name == 'release' }}
278286
run: |

0 commit comments

Comments
 (0)