From c0179c835179b1340fe097dc9a28d80e53c4370b Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Thu, 24 Oct 2024 11:47:51 -0400 Subject: [PATCH] fix: env correct --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c48ca45d4..d9946825e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -77,9 +77,9 @@ jobs: run: | docker run --rm -v ${{ github.workspace }}/api/deploy/release:/app/deploy/release builder npm run build-and-pack env: - GIT_SHA=${{ steps.vars.outputs.GIT_SHA }} - API_VERSION=${{ steps.vars.outputs.API_VERSION }} - IS_TAGGED=${{ steps.vars.outputs.IS_TAGGED }} + GIT_SHA: ${{ steps.vars.outputs.GIT_SHA }} + API_VERSION: ${{ steps.vars.outputs.API_VERSION }} + IS_TAGGED: ${{ steps.vars.outputs.IS_TAGGED }} - name: Set Hashes id: set-hashes