From 78cf8f1f9f29c684db0359a7a66c61837ee2842e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9mentine=20Urquizar?= Date: Wed, 2 Feb 2022 19:29:07 +0100 Subject: [PATCH] Fix typo --- .github/is-latest-release.sh | 2 +- .github/workflows/publish-binaries.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/is-latest-release.sh b/.github/is-latest-release.sh index 77e3ad9a0..0c1db61c2 100644 --- a/.github/is-latest-release.sh +++ b/.github/is-latest-release.sh @@ -74,7 +74,7 @@ semverLT() { # Returns the tag of the latest stable release (in terms of semver and not of release date) get_latest() { temp_file='temp_file' # temp_file needed because the grep would start before the download is over - curl -s 'https://api.github.com/repos/meilisearch/meiliSearch/releases' > "$temp_file" + curl -s 'https://api.github.com/repos/meilisearch/meilisearch/releases' > "$temp_file" releases=$(cat "$temp_file" | \ grep -E "tag_name|draft|prerelease" \ | tr -d ',"' | cut -d ':' -f2 | tr -d ' ') diff --git a/.github/workflows/publish-binaries.yml b/.github/workflows/publish-binaries.yml index 9893b79a8..64af0e2c0 100644 --- a/.github/workflows/publish-binaries.yml +++ b/.github/workflows/publish-binaries.yml @@ -39,7 +39,7 @@ jobs: tag: ${{ github.ref }} publish-aarch64: - name: Publish to Github + name: Publish to GitHub runs-on: ${{ matrix.os }} continue-on-error: false strategy: