From a9e9cbf638c836a3d70c52b58fe83290d9fd67c2 Mon Sep 17 00:00:00 2001 From: Benjamin Loison Date: Wed, 18 Sep 2024 03:27:09 +0200 Subject: [PATCH] Correct a typo in `.github/workflows/{debug_build,attach_debug_apk_to_release}.yml` --- .github/workflows/attach_debug_apk_to_release.yml | 4 ++-- .github/workflows/debug_build.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/attach_debug_apk_to_release.yml b/.github/workflows/attach_debug_apk_to_release.yml index f52308f2d..69f540f0d 100644 --- a/.github/workflows/attach_debug_apk_to_release.yml +++ b/.github/workflows/attach_debug_apk_to_release.yml @@ -49,9 +49,9 @@ jobs: exit_on_error "Failed to find built APK at '$APK_DIR_PATH/${APK_BASENAME_PREFIX}.apk'. Files found: "$'\n'"$files_found" fi - echo "Generating sha25sums file" + echo "Generating sha256sums file" if ! (cd "$APK_DIR_PATH"; sha256sum "${APK_BASENAME_PREFIX}.apk" > sha256sums); then - exit_on_error "Generate sha25sums failed for '$RELEASE_VERSION_NAME' release." + exit_on_error "Generate sha256sums failed for '$RELEASE_VERSION_NAME' release." fi echo "Attaching APK to github release" diff --git a/.github/workflows/debug_build.yml b/.github/workflows/debug_build.yml index 28d6776cb..288fbbb49 100644 --- a/.github/workflows/debug_build.yml +++ b/.github/workflows/debug_build.yml @@ -51,9 +51,9 @@ jobs: exit_on_error "Failed to find built APK at '$APK_DIR_PATH/${APK_BASENAME_PREFIX}.apk'. Files found: "$'\n'"$files_found" fi - echo "Generating sha25sums file" + echo "Generating sha256sums file" if ! (cd "$APK_DIR_PATH"; sha256sum "${APK_BASENAME_PREFIX}.apk" > sha256sums); then - exit_on_error "Generate sha25sums failed for '$RELEASE_VERSION_NAME' release." + exit_on_error "Generate sha256sums failed for '$RELEASE_VERSION_NAME' release." fi - name: Attach files