Skip to content

Commit aa57569

Browse files
authored
Fix warning in GitHub actions about deprecated .yaml syntax (#100)
1 parent 3cfe2d3 commit aa57569

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
shell: cmake -P {0}
1919
run: |
2020
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC)
21-
message("::set-output name=timestamp::${current_date}")
21+
file(APPEND "$ENV{GITHUB_OUTPUT}" "timestamp=${current_date}")
2222
2323
- uses: actions/cache@v3
2424
with:

0 commit comments

Comments
 (0)