From 529ae9e1bf374ab281e2cb84f2bc002d5e116061 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sun, 25 Jan 2026 23:00:04 +0000 Subject: [PATCH] github: include date in version for labs build Make labs version a bit easier to identify by also including the build date. --- .github/workflows/test-pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index b4be39b7..ba69e4a5 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -33,7 +33,7 @@ jobs: run: | echo "REACT_APP_NAME=Pybricks Labs" >> $GITHUB_ENV echo "REACT_APP_SUFFIX=-labs" >> $GITHUB_ENV - echo "REACT_APP_VERSION=$GITHUB_SHA" >> $GITHUB_ENV + echo "REACT_APP_VERSION=$(date --iso)-$GITHUB_SHA" >> $GITHUB_ENV - run: yarn build - uses: actions/upload-artifact@v6 with: