From 157cc71b9349cd8f00d88936cf31920a10d96122 Mon Sep 17 00:00:00 2001 From: Cameron Clough Date: Thu, 20 Jun 2024 19:04:54 +0100 Subject: [PATCH] try this --- .github/workflows/build.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3c82c45a..17809bb3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,14 +16,12 @@ jobs: - name: get build info id: build_info - run: | - echo sha=$(git show -s --format=%H) >> $GITHUB_OUTPUT - echo timestamp=$(git show -s --format=%cI) >> $GITHUB_OUTPUT + run: echo timestamp=$(git show -s --format=%cI) >> $GITHUB_OUTPUT - run: pnpm install - run: pnpm build:production env: - VITE_APP_GIT_SHA: ${{ steps.build_info.outputs.sha }} + VITE_APP_GIT_SHA: ${{ github.sha }} VITE_APP_GIT_TIMESTAMP: ${{ steps.build_info.outputs.timestamp }} - name: Upload built project