Skip to content

Commit

Permalink
Reformat release.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
freitas-renato committed Oct 31, 2023
1 parent 65c2bf4 commit 13e0cb2
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,28 @@ jobs:
echo
echo '## Files'
echo '```'
(file mosh-client-*/mosh-client* mosh-server-*/mosh-server*)
(
for dir in mosh-client* mosh-server*; do
cd "$dir"
for prog in mosh*; do
file "$prog"
done
cd ..
done
)
echo '```'
echo
echo '## SHA256 Checksums'
echo '```'
(sha256sum mosh-client-*/mosh-client* mosh-server-*/mosh-server*)
(
for dir in mosh-client* mosh-server*; do
cd "$dir"
for prog in mosh*; do
sha256sum "$prog"
done
cd ..
done
)
echo '```'
) | tee release.md
Expand Down

0 comments on commit 13e0cb2

Please sign in to comment.