fix: nicks perfectionism

This commit is contained in:
Skillz4Killz
2022-02-25 17:54:44 +00:00
committed by GitHub
parent ada676f15d
commit 5abd6861b9
+1 -3
View File
@@ -18,9 +18,7 @@ jobs:
deno-version: ${{ matrix.deno }}
- name: Get tag version
id: get_tag_version
run: |
version=`cat util/constants.ts | grep 'export const DISCORDENO_VERSION' | awk -F'= ' '{print $2}' | tr -d '"|;'`
echo "DISCORDENO_VERSION=$version" >> $GITHUB_ENV
run: echo "DISCORDENO_VERSION=$(cat util/constants.ts | grep 'export const DISCORDENO_VERSION' | awk -F'= ' '{print $2}' | tr -d '"|;')" >> $GITHUB_ENV
- name: Create tag
run: git tag ${{ env.DISCORDENO_VERSION }} && git push --tags