Skip to content

Commit 471029a

Browse files
committed
Migrater ::set-output to GITHUB_OUTPUT
1 parent 60f1159 commit 471029a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
if [[ $GITHUB_REF == refs/tags/* ]]; then
2929
VERSION=${GITHUB_REF/refs\/tags\//}
3030
fi
31-
echo ::set-output name=build_date::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
32-
echo ::set-output name=version::${VERSION}
31+
echo "build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
32+
echo "version=${VERSION}" >> $GITHUB_OUTPUT
3333
3434
operator:
3535
name: Operator

0 commit comments

Comments
 (0)