Skip to content

Commit c017ff2

Browse files
authored
Fix: output json no longer base64 encoded (#8)
1 parent 23c84cd commit c017ff2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ echo "workflowId=$workflowId" >> $GITHUB_OUTPUT
6565
echo "workflowUrl=$(echo $workflowUrl | sed 's/"//g')" >> $GITHUB_OUTPUT # We must remove quotes for the URL
6666
echo "workspaceId=$workspaceId" >> $GITHUB_OUTPUT
6767
echo "workspaceRef=$workspaceRef" >> $GITHUB_OUTPUT
68-
echo "json=$OUT" >> $GITHUB_OUTPUT
68+
echo "json='$(echo $OUT | base64 -d | jq -rc)'" >> $GITHUB_OUTPUT
6969

7070
# Strip secrets from the log file
7171
sed -i "s/$TOWER_ACCESS_TOKEN/xxxxxx/" $LOG_FN

0 commit comments

Comments
 (0)