Skip to content

Commit

Permalink
fix checksum output
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxcapades committed Feb 6, 2025
1 parent 7c9e041 commit 72a0d32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
run: |
./gradlew --no-daemon clean test shadowJar
mv -t . service/build/libs/service.jar
sha256sum service.jar | cut -b64 > service.jar.sha256
md5sum service.jar | cut -b32 > service.jar.md5
sha256sum service.jar | cut -f1 -d' ' -z > service.jar.sha256
md5sum service.jar | cut -f1 -d' ' -z > service.jar.md5
env:
GITHUB_USERNAME: ${{ secrets.GITHUB_USERNAME }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 72a0d32

Please sign in to comment.