From d4ba61b0a49dea4a58e1cb24608d16d3f0a1a9f7 Mon Sep 17 00:00:00 2001 From: repair Date: Mon, 22 Jan 2024 17:16:09 +0100 Subject: [PATCH] refactor: removed curly brackets for variable call for build script --- .github/workflows/debian-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/debian-release.yml b/.github/workflows/debian-release.yml index 40899875..ede3079f 100644 --- a/.github/workflows/debian-release.yml +++ b/.github/workflows/debian-release.yml @@ -27,7 +27,7 @@ jobs: repository: barnumbirr/scaphandre-debian - name: Build package with version tag and Debian 11 Bullseye run : | - ./build.sh -v {{ $VERSION }} + ./build.sh -v $VERSION - name: Build package with version tag and Debian 12 Bookworm run: | - ./build.sh -i debian:bookworm-slim -v {{ $VERSION }} + ./build.sh -i debian:bookworm-slim -v $VERSION