Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/release-mcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,14 @@ jobs:
node-version: "24"
registry-url: "https://registry.npmjs.org"
- run: cd mcp-package && npm install
- run: cd mcp-package && npm publish
- run: cd mcp-package && npm stage publish

- name: Notify Slack about staged npm package
uses: grafana/shared-workflows/actions/send-slack-message@eb1fbd807f87aea8f40ff08dc9cd02872cad55b3 # send-slack-message/v2.0.5
with:
method: chat.postMessage
payload: |
{
"channel": "C031SLFH6G0",
"text": "📦 `@grafana/plugin-validator-mcp` has been staged for npm publishing from tag `${{ github.ref_name }}`. Please review and approve at https://www.npmjs.com/settings/grafanabot/staged-packages"
}
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,17 @@ jobs:
node-version: "24"
registry-url: "https://registry.npmjs.org"
- run: npm install
- run: npm publish
- run: npm stage publish

- name: Notify Slack about staged npm package
uses: grafana/shared-workflows/actions/send-slack-message@eb1fbd807f87aea8f40ff08dc9cd02872cad55b3 # send-slack-message/v2.0.5
with:
method: chat.postMessage
payload: |
{
"channel": "C031SLFH6G0",
"text": "📦 `@grafana/plugin-validator` has been staged for npm publishing from tag `${{ github.ref_name }}`. Please review and approve at https://www.npmjs.com/settings/grafanabot/staged-packages"
}

release-to-dockerhub:
runs-on: ubuntu-x64
Expand Down
Loading