From 0d5322628e807db89490ae7082f85e1d24ea87f2 Mon Sep 17 00:00:00 2001 From: Luke Francl Date: Fri, 8 Oct 2021 11:42:59 -0700 Subject: [PATCH] remove comment from shell pipeline --- .github/workflows/sync-linguist.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync-linguist.yml b/.github/workflows/sync-linguist.yml index dbadec4..93d20af 100644 --- a/.github/workflows/sync-linguist.yml +++ b/.github/workflows/sync-linguist.yml @@ -16,11 +16,13 @@ jobs: fetch-depth: 0 - name: check out latest release id: linguist-release + # the `grep -v "-"` is to exclude any pre-release versions. + # Linguist doesn't have any right now, but just in case. run: | set -e cd .linguist $latest=$(git tag --list | \ - grep -v "-" | \ # exclude any pre-release versions + grep -v "-" | \ sort --version-sort --reverse | \ head -1) echo "::set-output name=linguist_version::$latest"