From a6b36ee927e53c9a0d1e49724ab688354a15e826 Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Thu, 18 Apr 2024 07:29:11 +0200 Subject: [PATCH] :pencil2: feat!: Improve Meteor's version parsing. BREAKING: Might break someone's workflow. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index a318c53..c17d9e6 100644 --- a/action.yml +++ b/action.yml @@ -13,7 +13,7 @@ runs: shell: bash - name: Set env.METEOR_LOCAL_RELEASE 📻 - run: echo "METEOR_LOCAL_RELEASE=$(cat .meteor/release | cut -d@ -f2)" >> $GITHUB_ENV + run: echo "METEOR_LOCAL_RELEASE=$(sed -n 's/^METEOR@\([0-9][0-9]*.*\)$/\1/p' .meteor/release)" >> $GITHUB_ENV shell: bash - name: Set env.METEOR_EXECUTABLE_VERSION 📺