diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed7b10bf1..db456de3b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,4 @@ jobs: id: get_tag_version run: | version=`cat util/constants.ts | grep 'export const DISCORDENO_VERSION' | awk -F'= ' '{print $2}' | tr -d '"|;'` - echo ::set-output name=TAG_VERSION::${$version} - - name: Create tag - run: git tag ${{steps.get_tag_version.outputs.TAG_VERSION}} && git push --tags + git tag ${{version}} && git push --tags