We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f61d2b7 commit 39c5975Copy full SHA for 39c5975
.github/workflows/continuous-integration.yml
@@ -93,7 +93,7 @@ jobs:
93
- name: Set start timestamp
94
id: start
95
shell: bash
96
- run: printf 'timestamp=%(%s)T\n' >> "$GITHUB_OUTPUT"
+ run: echo "timestamp=$(date +%s)" >> "$GITHUB_OUTPUT"
97
- name: Checkout sources
98
uses: actions/checkout@v4
99
with:
@@ -144,7 +144,7 @@ jobs:
144
id: end
145
146
run: |
147
- printf -v now '%(%s)T'
+ now=$(date +%s)
148
duration=$(( now - ${{ steps.start.outputs.timestamp }} ))
149
echo "duration=$duration" >> "$GITHUB_OUTPUT"
150
- name: Emit metrics
0 commit comments