Skip to content

Commit

Permalink
fix: create astro dir if it's not exist to fix issue with episode val…
Browse files Browse the repository at this point in the history
…idation script
  • Loading branch information
yjose committed Jan 25, 2025
1 parent 2236800 commit ebd4244
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/scripts/validate-episode-markdown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ exit_code=$?

# Output file location
output_file=".astro/episode-validation.md"
# Create .astro directory if it doesn't exist
mkdir -p ".astro"

{
# Add summary based on exit code
if [ $exit_code -eq 0 ]; then
Expand Down

0 comments on commit ebd4244

Please sign in to comment.