17 lines
477 B
Bash
Executable File
17 lines
477 B
Bash
Executable File
#!/bin/bash
|
|
echo "🚀 Pushing to Gitea..."
|
|
echo ""
|
|
echo "Make sure you've created the repository on Gitea:"
|
|
echo "https://gitea.pipexerp.com/huangjun/claude-marketplace"
|
|
echo ""
|
|
read -p "Press Enter to continue..."
|
|
|
|
git push -u origin main
|
|
|
|
echo ""
|
|
echo "✅ Done! Your marketplace is now live at:"
|
|
echo "https://gitea.pipexerp.com/huangjun/claude-marketplace"
|
|
echo ""
|
|
echo "Test it with:"
|
|
echo "/plugin marketplace add git@gitea.pipexerp.com:huangjun/claude-marketplace.git"
|