File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 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
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 : |
@@ -105,6 +111,9 @@ jobs:
105111 - name : Download artifacts
106112 uses : actions/download-artifact@v6
107113
114+ - name : List files for debugging
115+ run : find .
116+
108117 - name : Work around GitHub permissions bug
109118 run : chmod +x *.bin/*/shellcheck*
110119
@@ -137,8 +146,17 @@ jobs:
137146 - name : Checkout repository
138147 uses : actions/checkout@v5
139148
140- - name : Download artifacts
149+ - name : Download artifacts (source)
141150 uses : actions/download-artifact@v6
151+ with :
152+ name : source
153+ path : source/
154+
155+ - name : Download artifacts (binaries)
156+ uses : actions/download-artifact@v6
157+ with :
158+ name : deploy
159+ path : deploy/
142160
143161 - name : Upload to GitHub
144162 env :
You can’t perform that action at this time.
0 commit comments