Skip to content

Commit 1382f5f

Browse files
committed
(General) Update workflows
1 parent c4d2a89 commit 1382f5f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ jobs:
9898

9999
- name: Generate Hash of New APK
100100
id: hash_new_apk
101-
run: echo "::set-output name=hash::$(hashFiles('app/sample.apk'))"
101+
run: |
102+
apk_hash=$(sha256sum app/sample.apk | awk '{print $1}')
103+
echo "::set-output name=hash::$apk_hash"
102104
103105
- name: Download Hash of Previous APK
104106
id: download_hash

0 commit comments

Comments
 (0)