Debug timestamp output

This commit is contained in:
aboyko
2023-07-07 12:33:11 -04:00
parent 12e7e16ba9
commit ae96a8f7fe

15
.github/workflows/debug-test-flow.yml vendored Normal file
View File

@@ -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 }}