From 0c3fa74333cb329e8be3370ed5ef5c479405a8d3 Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Fri, 25 Feb 2022 17:47:46 +0000 Subject: [PATCH] fix: try echo env --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db456de3b..7dd67e701 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,4 +20,7 @@ jobs: id: get_tag_version run: | version=`cat util/constants.ts | grep 'export const DISCORDENO_VERSION' | awk -F'= ' '{print $2}' | tr -d '"|;'` - git tag ${{version}} && git push --tags + echo "DISCORDENO_VERSION=$version" >> $GITHUB_ENV + - name: Create tag + run: echo ${{ env.MY_VARIABLE }} +