[Rt-commit] rt branch, 4.4/github-actions-testing2, updated. rt-4.4.4-468-g1f776090cc
Jim Brandt
jbrandt at bestpractical.com
Tue May 25 13:08:36 EDT 2021
The branch, 4.4/github-actions-testing2 has been updated
via 1f776090cc2cc4c87c8ac8089f15be3592972ebc (commit)
from 7102b6795bd409c3eb9d091034926f0c788ca48e (commit)
Summary of changes:
.github/workflows/github-action.yml | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
- Log -----------------------------------------------------------------
commit 1f776090cc2cc4c87c8ac8089f15be3592972ebc
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Tue May 25 13:08:33 2021 -0400
Add missing $
diff --git a/.github/workflows/github-action.yml b/.github/workflows/github-action.yml
index 10d1e977ed..27c0f9cf0e 100644
--- a/.github/workflows/github-action.yml
+++ b/.github/workflows/github-action.yml
@@ -32,12 +32,11 @@ jobs:
- name: Get run time
shell: bash
run: |
- export RT_GA_END_TIME=(date +%s)
+ export RT_GA_END_TIME=$(date +%s)
echo RT_GA_START_TIME ${{ env.RT_GA_START_TIME }}
echo RT_GA_END_TIME $RT_GA_END_TIME
echo "RT_GA_END_TIME=$RT_GA_END_TIME" >> $GITHUB_ENV
- echo "RT_GA_TEST_TIME=10" >> $GITHUB_ENV
-# echo "RT_GA_TEST_TIME=$(( RT_GA_END_TIME - ${{ env.RT_GA_START_TIME }} ))" >> $GITHUB_ENV
+ echo "RT_GA_TEST_TIME=$(( RT_GA_END_TIME - ${{ env.RT_GA_START_TIME }} ))" >> $GITHUB_ENV
- name: Post results to Slack
if: always()
uses: edge/simple-slack-notify at v1.1.1
-----------------------------------------------------------------------
More information about the rt-commit
mailing list