A CLI for publishing standard.site documents to ATProto

fix: quote glob in action so git stages deeply nested md files

Unquoted `**/*.md` was shell-expanded (bash globstar is off by
default), only matching one level deep. Quoting it passes the
pattern as a git pathspec, which recurses at any depth.

+1 -1
+1 -1
action.yml
··· 72 run: | 73 git config user.name "$(git log -1 --format='%an')" 74 git config user.email "$(git log -1 --format='%ae')" 75 - git add -A *.md **/*.md || true 76 if git diff --cached --quiet; then 77 echo "No changes to commit" 78 else
··· 72 run: | 73 git config user.name "$(git log -1 --format='%an')" 74 git config user.email "$(git log -1 --format='%ae')" 75 + git add -A -- '**/*.md' || true 76 if git diff --cached --quiet; then 77 echo "No changes to commit" 78 else