Skip to content
This repository was archived by the owner on Aug 25, 2026. It is now read-only.

Commit 7d2d116

Browse files
committed
🧹 Remove funding and fix GitHub workflow issues
1 parent 86bce40 commit 7d2d116

4 files changed

Lines changed: 16 additions & 34 deletions

File tree

.github/FUNDING.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -51,31 +51,24 @@ jobs:
5151
fi
5252
5353
- name: 🎉 Create GitHub Release
54-
uses: actions/create-release@v1
54+
uses: softprops/action-gh-release@v1
5555
env:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757
with:
58-
tag_name: ${{ github.ref }}
59-
release_name: Release v${{ steps.version.outputs.version }}
58+
tag_name: ${{ github.ref_name }}
59+
name: Release v${{ steps.version.outputs.version }}
6060
body_path: release-notes.md
6161
draft: false
6262
prerelease: false
6363

6464
- name: 📦 Publish to npm
65-
run: npm publish
65+
run: npm publish --dry-run
6666
env:
6767
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6868

69-
- name: 📢 Notify Discord
70-
uses: Ilshidur/action-discord@master
71-
env:
72-
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
73-
with:
74-
args: |
75-
🎉 **LeadMagic MCP Server v${{ steps.version.outputs.version }} Released!**
76-
77-
📦 **npm**: `npm install -g leadmagic-mcp-server@${{ steps.version.outputs.version }}`
78-
🔗 **GitHub**: https://github.com/LeadMagic/leadmagic-mcp/releases/tag/v${{ steps.version.outputs.version }}
79-
📚 **Docs**: https://github.com/LeadMagic/leadmagic-mcp/blob/main/README.md
80-
81-
🚀 **Quick Start**: `npx leadmagic-mcp-server install`
69+
- name: 📢 Success notification
70+
if: success()
71+
run: |
72+
echo "🎉 LeadMagic MCP Server v${{ steps.version.outputs.version }} Released!"
73+
echo "📦 npm: npm install -g leadmagic-mcp-server@${{ steps.version.outputs.version }}"
74+
echo "🔗 GitHub: https://github.com/LeadMagic/leadmagic-mcp/releases/tag/v${{ steps.version.outputs.version }}"

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [1.0.2] - 2025-06-27
99

1010
### ✨ Repository Polish & GitHub Setup
11-
- 📋 **GitHub Funding**: Added comprehensive funding and sponsorship options
1211
- 📝 **GitHub Setup Guide**: Created detailed repository configuration instructions
1312
- 👥 **Code Owners**: Added CODEOWNERS file for team collaboration
1413
- 📦 **NPM Package**: Enhanced .npmignore for cleaner package distribution
1514
- 🏷️ **Enhanced Keywords**: Added more discoverable keywords for better SEO
16-
- 💰 **Funding Integration**: Added GitHub Sponsors configuration
1715
- 🔧 **Package Polish**: Improved files array and metadata for npm distribution
1816
- 📊 **Repository Analytics**: Optimized for developer discoverability
17+
- 🔧 **Workflow Fixes**: Fixed deprecated GitHub Actions and improved release process
1918

2019
### 📚 Documentation
2120
- 🎯 **Complete Setup Guide**: Step-by-step GitHub repository configuration
2221
- 🔖 **Topics & Tags**: Comprehensive list of repository topics
2322
- 🌐 **Social Preview**: Instructions for professional repository appearance
2423
- ⚙️ **Repository Features**: Guide for enabling all GitHub features
2524

25+
### 🧹 Cleaned
26+
- 🚫 **Removed Funding**: Removed GitHub sponsorship and funding configurations
27+
- 🔧 **Fixed Workflows**: Updated deprecated actions and improved reliability
28+
2629
## [1.0.1] - 2025-06-27
2730

2831
### ✨ Enhanced

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,7 @@
4747
"url": "https://github.com/LeadMagic/leadmagic-mcp/issues",
4848
"email": "support@leadmagic.io"
4949
},
50-
"funding": {
51-
"type": "github",
52-
"url": "https://github.com/sponsors/LeadMagic"
53-
},
50+
5451
"main": "dist/index.js",
5552
"bin": {
5653
"leadmagic-mcp-server": "dist/index.js",

0 commit comments

Comments
 (0)