Skip to content

Commit f0f9e4e

Browse files
Merge pull request #175 from zereight/chore/bump-version-1.0.74
Bump version to 1.0.74
2 parents e5248b3 + a24857a commit f0f9e4e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zereight/mcp-gitlab",
3-
"version": "1.0.72",
3+
"version": "1.0.74",
44
"description": "MCP server for using the GitLab API",
55
"license": "MIT",
66
"author": "zereight",

scripts/image_push.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ IMAGE_VERSION=$(git describe --tags --abbrev=0 --match "v[0-9]*.[0-9]*.[0-9]*" m
1414
git checkout "${IMAGE_VERSION}"
1515
IMAGE_VERSION=${IMAGE_VERSION#v}
1616
echo "${DOCKER_USER}/${IMAGE_NAME}:${IMAGE_VERSION}"
17+
npm install && npm run build
1718
docker buildx build --platform linux/arm64,linux/amd64 \
1819
-t "${DOCKER_USER}/${IMAGE_NAME}:latest" \
1920
-t "${DOCKER_USER}/${IMAGE_NAME}:${IMAGE_VERSION}" \

scripts/npm_push.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
git fetch
33

44
git checkout main
5-
IMAGE_VERSION=$(git describe --tags --abbrev=0)
5+
IMAGE_VERSION=$(git describe --tags --abbrev=0 --match "v[0-9]*.[0-9]*.[0-9]*" main)
66

77
git checkout "${IMAGE_VERSION}"
88
echo "${IMAGE_VERSION}"
9-
npm run build && npm run deploy
9+
npm install && npm run build && npm run deploy

0 commit comments

Comments
 (0)