From 104903f90e3a1e01f1b16edabce20200541d806d Mon Sep 17 00:00:00 2001 From: rolsen Date: Tue, 8 Sep 2020 17:39:35 -0600 Subject: [PATCH] Fix: Workflow env specification for build date. --- .github/workflows/build_release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index 8ad6eaa5..deecc3b9 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -56,7 +56,9 @@ jobs: - run: npm run setup - name: Fix lerna mess run: node ./scripts/fix_lerna_backup.js - - run: OVERRIDE_BUILD_DATE=${{ steps.date.outputs.formattedTime }} npm run build + - run: npm run build + env: + OVERRIDE_BUILD_DATE: ${{ steps.date.outputs.formattedTime }} - run: SKIP_HARDWARE_TEST=true npm run test if: ${{ matrix.platform == 'ubuntu-16.04' }}