From f1261c40b45fa95ac1d55407ea5c552b035a6581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sat, 29 Jan 2022 22:08:29 +0100 Subject: [release]: Fix github variable syntax --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 80df935..0a16dab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,14 +65,14 @@ jobs: run: go vet ./... - name: Release Build - run: go build -ldflags '-s -w ${matrix.ldflags}' -o ${matrix.output} + run: go build -ldflags '-s -w ${{ matrix.ldflags }}' -o ${{ matrix.output }} - name: Upload Release uses: ColinPitrat/update-release@v1.0.1 id: update-release with: token: ${{ secrets.GITHUB_TOKEN }} - files: ${matrix.output} + files: ${{ matrix.output }} tag: release -- cgit v1.2.3