From c8874e99ba4bc56b0e6c9112ef9f2a1036e00982 Mon Sep 17 00:00:00 2001 From: Flavio Castelli Date: Wed, 14 Apr 2021 11:40:48 +0200 Subject: [PATCH] Fix the release action Perform variable substitution using GH's template --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1c6fede..e0f2dca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: - name: Build Wasm module uses: docker://tinygo/tinygo-dev:latest with: - args: tinygo build -o ${WASM_BINARY_NAME} -target=wasi -no-debug . + args: tinygo build -o ${{ env.WASM_BINARY_NAME }} -target=wasi -no-debug . - name: Login to GitHub Container Registry