Skip to content

Commit 82003f4

Browse files
authored
fix version (#326)
1 parent 0e246a9 commit 82003f4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ jobs:
6060
id: image-tag
6161
run: |
6262
# Extract the image tag from the version
63-
echo "IMAGE_TAG=${IMAGE_TAG#v}" >> $GITHUB_OUTPUT
63+
VERSION="${{ steps.version.outputs.VERSION }}"
64+
echo "IMAGE_TAG=${VERSION#v}" >> $GITHUB_OUTPUT
6465
6566
- name: Install dependencies
6667
run: |

server.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
"url": "https://github.com/grafana/mcp-grafana",
77
"source": "github"
88
},
9-
"version": "$VERSION",
109
"packages": [
1110
{
1211
"registryType": "oci",
1312
"identifier": "docker.io/grafana/mcp-grafana",
14-
"version": "$VERSION",
1513
"transport": {
1614
"type": "stdio"
1715
},

0 commit comments

Comments
 (0)