From ae96a8f7fec358ff9a102251e7435b0d1de40d01 Mon Sep 17 00:00:00 2001 From: aboyko Date: Fri, 7 Jul 2023 12:33:11 -0400 Subject: [PATCH] Debug timestamp output --- .github/workflows/debug-test-flow.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/debug-test-flow.yml diff --git a/.github/workflows/debug-test-flow.yml b/.github/workflows/debug-test-flow.yml new file mode 100644 index 000000000..ecde2d191 --- /dev/null +++ b/.github/workflows/debug-test-flow.yml @@ -0,0 +1,15 @@ +name: Debug Timestamp +on: + workflow_dispatch: +jobs: + + eclipse-distro-build: + runs-on: [self-hosted, macOS] + steps: + - name: Timestamp + id: timestamp + run: echo "name=date::$(date +'%Y%m%dT%H%M%S')" >> $GITHUB_OUTPUT + - name: Print timestamp + run: | + echo $(date +'%Y%m%dT%H%M%S') + echo ${{ steps.timestamp.outputs.date }}