Skip to content

Commit

Permalink
Merge branch 'master' into fix-build-and-stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
sean0x42 authored Oct 13, 2024
2 parents cbe14d8 + 2647122 commit c9522ba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/action/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/sh

set -e

EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)

# process flags
Expand All @@ -15,4 +17,5 @@ if [ "$FLAG_NO_PRINT_MATCHED_HEADING" = "true" ]; then
fi
ARGUMENTS="$ARGUMENTS $*"

{ echo "markdown<<$EOF"; /markdown-extract $ARGUMENTS; echo "$EOF"; } >> "$GITHUB_OUTPUT"
/markdown-extract $ARGUMENTS 1>stdout
{ echo "markdown<<$EOF"; cat stdout; echo "$EOF"; } >> "$GITHUB_OUTPUT"

0 comments on commit c9522ba

Please sign in to comment.