10 lines
196 B
Bash
Executable File
10 lines
196 B
Bash
Executable File
#!/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/
|