Skip to content

Commit

Permalink
ci: fix changeset folder
Browse files Browse the repository at this point in the history
  • Loading branch information
shairez committed Jul 29, 2024
1 parent 3bb5e67 commit f7a10e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ jobs:
md_file_removed=false
for file in $removed_files; do
if [[ $file == .changesets/*.md ]]; then
if [[ $file == .changeset/*.md ]]; then
md_file_removed=true
break
fi
done
if [ -d ".changesets" ]; then
md_files=$(find .changesets -name '*.md')
if [ -d ".changeset" ]; then
md_files=$(find .changeset -name '*.md')
if [ -z "$md_files" ] && [ "$md_file_removed" = true ]; then
is_release=true
fi
Expand Down

0 comments on commit f7a10e1

Please sign in to comment.