Skip to content

Commit 205c6a3

Browse files
committed
Specify name and path for download-artifact action
1 parent cf631bf commit 205c6a3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ jobs:
5252
steps:
5353
- name: Download artifacts
5454
uses: actions/download-artifact@v6
55+
with:
56+
name: source
57+
path: source/
5558

5659
- name: Setup Haskell
5760
uses: haskell-actions/setup@v2
@@ -81,6 +84,9 @@ jobs:
8184

8285
- name: Download artifacts
8386
uses: actions/download-artifact@v6
87+
with:
88+
name: source
89+
path: source/
8490

8591
- name: Build source
8692
run: |
@@ -104,6 +110,9 @@ jobs:
104110

105111
- name: Download artifacts
106112
uses: actions/download-artifact@v6
113+
with:
114+
name: source
115+
path: source/
107116

108117
- name: Work around GitHub permissions bug
109118
run: chmod +x *.bin/*/shellcheck*
@@ -139,6 +148,9 @@ jobs:
139148

140149
- name: Download artifacts
141150
uses: actions/download-artifact@v6
151+
with:
152+
name: source
153+
path: source/
142154

143155
- name: Upload to GitHub
144156
env:

0 commit comments

Comments
 (0)