Skip to content

Commit

Permalink
correct workflow filter
Browse files Browse the repository at this point in the history
  • Loading branch information
strowk committed Dec 1, 2024
1 parent fa15f2b commit 8b745bc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ jobs:
strategy:
matrix:
os:
# - ubuntu-latest
- windows-latest
# - macos-latest
- windows-latest
# It appears that linux and macos installations are bugged at the moment
# - ubuntu-latest
# - macos-latest
arch:
- x64
- arm64
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release mcp-k8s to npm
on:
workflow_dispatch:
tags:
- 'v*.*.*'
- '*'

jobs:
release:
Expand Down
5 changes: 4 additions & 1 deletion packages/update_versions.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/bin/bash

previous_version="0.0.9"
new_version="0.0.10"

# replace previous version with new version in all .json files in ./packages folder
find ./packages -type f -name '*.json' -exec sed -i '' -e 's/0.0.9/0.0.10/g' {} \;
find ./packages -type f -name '*.json' -exec sed -i '' -e "s/${previous_version}/${new_version}/g" {} \;

0 comments on commit 8b745bc

Please sign in to comment.