From eb29fdce63dc482f87087e31f9e2c66fa494ee85 Mon Sep 17 00:00:00 2001 From: missytake Date: Mon, 30 May 2022 17:31:48 +0200 Subject: [PATCH] ci: fix variable --- .github/workflows/node-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node-package.yml b/.github/workflows/node-package.yml index 3a36b8a62..0482d6209 100644 --- a/.github/workflows/node-package.yml +++ b/.github/workflows/node-package.yml @@ -86,7 +86,7 @@ jobs: if [ -z "$tag" ]; then node -e "console.log('DELTACHAT_NODE_TAR_GZ=deltachat-node-' + '${{ github.ref }}'.split('/')[2] + '.tar.gz')" >> $GITHUB_ENV else - node -e "console.log('DELTACHAT_NODE_TAR_GZ=deltachat-node-' + '${{ steps.tag.outputs.tag }}'.split('/')[2] + '.tar.gz')" >> $GITHUB_ENV + echo "DELTACHAT_NODE_TAR_GZ=deltachat-node-${{ steps.tag.outputs.tag }}.tar.gz" >> $GITHUB_ENV echo "No preview will be uploaded this time, but the $tag release" fi - name: System info