-
Notifications
You must be signed in to change notification settings - Fork 0
Add version upgrade action for marketplaces #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 8 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
c9c1725
add bump version action
ganeshdipdumbare 85011f3
chore: bump marketplace version to v0.1.0
github-actions[bot] dbb7717
fix version location
ganeshdipdumbare c5eb31a
remove existing wrong version location
ganeshdipdumbare d830045
chore: bump marketplace version to v0.1.0
github-actions[bot] a94b5c8
chore: bump marketplace version to v2026.03.1
github-actions[bot] 2e4f877
remove existing version from plugins
ganeshdipdumbare 3b901b9
reformat the marketplace json
ganeshdipdumbare da2b69d
remove spaces
ganeshdipdumbare d50d19a
Update .github/workflows/update-version-on-release.yml
ganeshdipdumbare d80a103
Merge branch 'main' into add-bump-version-action
ganeshdipdumbare a64769b
Merge branch 'main' into add-bump-version-action
ganeshdipdumbare b593448
Merge branch 'main' into add-bump-version-action
ganeshdipdumbare File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,7 +6,7 @@ | |
| "plugins": [ | ||
| { | ||
| "name": "upsun", | ||
| "source": "./plugins/upsun" | ||
| "source": "./plugins/upsun" | ||
| } | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,7 +6,7 @@ | |
| "plugins": [ | ||
| { | ||
| "name": "upsun", | ||
| "source": "./plugins/upsun" | ||
| "source": "./plugins/upsun" | ||
| } | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| name: Update Marketplace Version on Release | ||
|
|
||
| on: | ||
| release: | ||
| types: [published] | ||
|
|
||
| jobs: | ||
| update-version: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: write | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ github.event.release.target_commitish }} | ||
| token: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Extract version from release tag | ||
| id: version | ||
| run: | | ||
| TAG="${{ github.event.release.tag_name }}" | ||
| # Strip leading 'v' prefix if present (e.g. v1.2.3 → 1.2.3) | ||
| VERSION="${TAG#v}" | ||
| echo "version=$VERSION" >> "$GITHUB_OUTPUT" | ||
| echo "tag=$TAG" >> "$GITHUB_OUTPUT" | ||
|
|
||
| - name: Update .claude-plugin/marketplace.json | ||
| run: | | ||
| jq --arg v "${{ steps.version.outputs.version }}" \ | ||
| '.plugins = [.plugins[] | . + {version: $v}]' \ | ||
| .claude-plugin/marketplace.json > /tmp/claude-marketplace.json | ||
| mv /tmp/claude-marketplace.json .claude-plugin/marketplace.json | ||
|
|
||
| - name: Update .cursor-plugin/marketplace.json | ||
| run: | | ||
| jq --arg v "${{ steps.version.outputs.version }}" \ | ||
| '.plugins = [.plugins[] | . + {version: $v}]' \ | ||
| .cursor-plugin/marketplace.json > /tmp/cursor-marketplace.json | ||
| mv /tmp/cursor-marketplace.json .cursor-plugin/marketplace.json | ||
|
|
||
| - name: Commit and push version bump | ||
| run: | | ||
| git config user.name "github-actions[bot]" | ||
| git config user.email "github-actions[bot]@users.noreply.github.com" | ||
| git add .claude-plugin/marketplace.json .cursor-plugin/marketplace.json | ||
| git diff --cached --quiet && echo "No changes to commit" && exit 0 | ||
| git commit -m "chore: bump marketplace version to ${{ steps.version.outputs.tag }}" | ||
| git push origin HEAD:${{ github.event.release.target_commitish }} | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.