Skip to content

Commit 0f5ae6b

Browse files
committed
Fix checksum filename for Test Harness APK
Update the `build-testharness.yml` workflow to use the correct filename when generating the SHA256 checksum for the Test Harness APK. The previous command outputted the checksum to `com.bitwarden.testharness.dev-debug.apk-sha256.txt`, which included an extraneous `-debug` suffix that did not match the expected artifact naming convention. The output file is now correctly named `com.bitwarden.testharness.dev.apk-sha256.txt`.
1 parent fbc3a31 commit 0f5ae6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-testharness.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
- name: Create checksum for Test Harness APK
125125
run: |
126126
sha256sum "testharness/build/outputs/apk/debug/com.bitwarden.testharness.dev.apk" \
127-
> ./com.bitwarden.testharness.dev-debug.apk-sha256.txt
127+
> ./com.bitwarden.testharness.dev.apk-sha256.txt
128128
129129
- name: Upload Test Harness SHA file
130130
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2

0 commit comments

Comments
 (0)