Skip to content

Commit

Permalink
Fix release job in build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
afinetooth committed Oct 2, 2024
1 parent 86238ad commit 0e1399f
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,19 +223,24 @@ jobs:
mv release/coveralls.exe release/coveralls-windows.exe
sha256sum release/* > release/coveralls-checksums.txt
- name: List files in release directory (debug)
run: |
echo "Listing files in release directory:"
ls -l release/
- name: Create Github release
env:
TAG: ${{ github.ref }}
GH_TOKEN: ${{ github.token }}
run: >
cd release/;
gh release create ${TAG}
'coveralls-linux-x86_64#coveralls-linux'
'coveralls-linux-x86_64.tar.gz#coveralls-linux.tar.gz'
'coveralls-linux-x86_64#coveralls-linux-x86_64' \
'coveralls-linux-x86_64.tar.gz#coveralls-linux-x86_64.tar.gz' \
'coveralls-linux-aarch64#coveralls-linux-aarch64' \
'coveralls-linux-aarch64.tar.gz#coveralls-linux-aarch64.tar.gz' \
'coveralls-linux#coveralls-linux'
'coveralls-linux.tar.gz#coveralls-linux.tar.gz'
'coveralls-linux-x86_64#coveralls-linux-x86_64'
'coveralls-linux-x86_64.tar.gz#coveralls-linux-x86_64.tar.gz'
'coveralls-linux-aarch64#coveralls-linux-aarch64'
'coveralls-linux-aarch64.tar.gz#coveralls-linux-aarch64.tar.gz'
'coveralls-windows.exe#coveralls-windows.exe'
'coveralls-windows.zip#coveralls-windows.zip'
'coveralls-checksums.txt#coveralls-checksums.txt'
Expand Down

0 comments on commit 0e1399f

Please sign in to comment.