Skip to content

Commit

Permalink
workflows: Add missing step
Browse files Browse the repository at this point in the history
Added missing step "Get the current date".
Without this step, the RUN_ID variable had an invalid value in it.
For example:
"RUN_ID: 34-"

Signed-off-by: Oleg Kulachenko <[email protected]>
  • Loading branch information
vvarg229 committed Oct 6, 2023
1 parent 10154d3 commit 977a16c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/s3-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Get the current date
id: date
shell: bash
run: echo "::set-output name=timestamp::$(date +%s)"

- name: Set RUN_ID
env:
Expand Down

0 comments on commit 977a16c

Please sign in to comment.