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 b82bd6d commit 696c21fCopy full SHA for 696c21f
.github/workflows/main.yml
@@ -21,13 +21,13 @@ jobs:
21
22
- name: Set current date as env variable
23
id: date
24
- run: echo "NOW=$(date +'%Y_%m_%d-%H_%M_%S')" >> $env:$GITHUB_OUTPUT
+ run: echo "timestamp=$(date +'%Y-%m-%d-%H-%M-%S')" >> $GITHUB_OUTPUT
25
26
- name: Cache CMake dependency source code
27
uses: actions/cache@v4
28
with:
29
path: bin
30
- key: build-${{ steps.date.outputs.NOW }}
+ key: build-${{ steps.date.outputs.timestamp }}
31
restore-keys: |
32
build-
33
0 commit comments