Skip to content

Commit 16330f1

Browse files
Update Action-Test workflow to parse JSON output and access specific properties
1 parent c2636d4 commit 16330f1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/Action-Test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ jobs:
7272
with:
7373
Script: |
7474
"result"
75-
$env:result
75+
$result = $env:result | ConvertFrom-Json
76+
$result.WISECAT
77+
$result.Zen
7678
7779
# ActionTestWithoutToken:
7880
# name: Action-Test - [WithoutToken]

0 commit comments

Comments
 (0)