Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
chore(workflow): ensure repository status is CLEAN by generating chec…
Browse files Browse the repository at this point in the history
…ksums in 'build' dir
  • Loading branch information
itsaky committed Jan 20, 2024
1 parent 9b987f6 commit 55bb46b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,13 @@ jobs:
${{ runner.os }}-gradle-
- name: Generate checksums
run: |
md5sum *.apk > CHECKSUMS-md5.txt
sha256sum *.apk > CHECKSUMS-sha256.txt
sha512sum *.apk > CHECKSUMS-sha512.txt
mkdir -p build
md5sum *.apk > build/CHECKSUMS-md5.txt
sha256sum *.apk > build/CHECKSUMS-sha256.txt
sha512sum *.apk > build/CHECKSUMS-sha512.txt
find build -type f -name "CHECKSUMS*.txt" -exec echo {} \; -exec cat {} \; -exec echo "" \;
- name: Publish release
run: ./gradlew nyxMake nyxMark nyxPublish publish release --stacktrace
- name: Archive Nyx state file
Expand Down

0 comments on commit 55bb46b

Please sign in to comment.