Skip to content

Commit 0e1399f

Browse files
committed
Fix release job in build.yml
1 parent 86238ad commit 0e1399f

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -223,19 +223,24 @@ jobs:
223223
mv release/coveralls.exe release/coveralls-windows.exe
224224
sha256sum release/* > release/coveralls-checksums.txt
225225
226+
- name: List files in release directory (debug)
227+
run: |
228+
echo "Listing files in release directory:"
229+
ls -l release/
230+
226231
- name: Create Github release
227232
env:
228233
TAG: ${{ github.ref }}
229234
GH_TOKEN: ${{ github.token }}
230235
run: >
231236
cd release/;
232237
gh release create ${TAG}
233-
'coveralls-linux-x86_64#coveralls-linux'
234-
'coveralls-linux-x86_64.tar.gz#coveralls-linux.tar.gz'
235-
'coveralls-linux-x86_64#coveralls-linux-x86_64' \
236-
'coveralls-linux-x86_64.tar.gz#coveralls-linux-x86_64.tar.gz' \
237-
'coveralls-linux-aarch64#coveralls-linux-aarch64' \
238-
'coveralls-linux-aarch64.tar.gz#coveralls-linux-aarch64.tar.gz' \
238+
'coveralls-linux#coveralls-linux'
239+
'coveralls-linux.tar.gz#coveralls-linux.tar.gz'
240+
'coveralls-linux-x86_64#coveralls-linux-x86_64'
241+
'coveralls-linux-x86_64.tar.gz#coveralls-linux-x86_64.tar.gz'
242+
'coveralls-linux-aarch64#coveralls-linux-aarch64'
243+
'coveralls-linux-aarch64.tar.gz#coveralls-linux-aarch64.tar.gz'
239244
'coveralls-windows.exe#coveralls-windows.exe'
240245
'coveralls-windows.zip#coveralls-windows.zip'
241246
'coveralls-checksums.txt#coveralls-checksums.txt'

0 commit comments

Comments
 (0)