Skip to content

Commit 3c3ab0d

Browse files
committed
fix: remove quotes from YAML variable when echoing to GITHUB_OUTPUT
1 parent f0eb259 commit 3c3ab0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/Lark-notification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
YAML=$(echo '${{ toJSON(github) }}' | deno --allow-all .github/scripts/transform-message-for-card.ts)
3030
{
3131
echo 'content<<EOF'
32-
echo '$YAML'
32+
echo $YAML
3333
echo 'EOF'
3434
} >> $GITHUB_OUTPUT
3535

0 commit comments

Comments
 (0)