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

Commit 55bb46b

Browse files
committed
chore(workflow): ensure repository status is CLEAN by generating checksums in 'build' dir
1 parent 9b987f6 commit 55bb46b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,13 @@ jobs:
267267
${{ runner.os }}-gradle-
268268
- name: Generate checksums
269269
run: |
270-
md5sum *.apk > CHECKSUMS-md5.txt
271-
sha256sum *.apk > CHECKSUMS-sha256.txt
272-
sha512sum *.apk > CHECKSUMS-sha512.txt
270+
mkdir -p build
271+
272+
md5sum *.apk > build/CHECKSUMS-md5.txt
273+
sha256sum *.apk > build/CHECKSUMS-sha256.txt
274+
sha512sum *.apk > build/CHECKSUMS-sha512.txt
275+
276+
find build -type f -name "CHECKSUMS*.txt" -exec echo {} \; -exec cat {} \; -exec echo "" \;
273277
- name: Publish release
274278
run: ./gradlew nyxMake nyxMark nyxPublish publish release --stacktrace
275279
- name: Archive Nyx state file

0 commit comments

Comments
 (0)