From fd7b1ba9a295862773d1a7b4ab4e5e1459356ae2 Mon Sep 17 00:00:00 2001 From: stranger80 Date: Tue, 1 Oct 2024 12:58:45 +0200 Subject: [PATCH] Fixing prod scarb build logic --- .github/workflows/prod-build-and-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prod-build-and-deploy.yml b/.github/workflows/prod-build-and-deploy.yml index 3938b33e..5c90e4b0 100644 --- a/.github/workflows/prod-build-and-deploy.yml +++ b/.github/workflows/prod-build-and-deploy.yml @@ -54,7 +54,7 @@ jobs: - name: Get Scarb version id: get_scarb_version run: | - SCARB_VERSION=$(cat .scarb-version) + SCARB_VERSION=$(cat .scarb-version | sed 's/v//') echo "scarb_version=${SCARB_VERSION}" >> $GITHUB_ENV - name: Build, tag, and push docker image to Amazon ECR