#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

# Build the action before committing
echo "🔨 Building action..."
npm run build

# Add the built files to the commit
git add index.cjs dist/
