diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 1a026b1..b8549ba 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -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 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a8f75c6..8d6a5b7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,7 @@ name: Release mcp-k8s to npm on: workflow_dispatch: tags: - - 'v*.*.*' + - '*' jobs: release: diff --git a/packages/update_versions.sh b/packages/update_versions.sh index a84163b..fd9c696 100644 --- a/packages/update_versions.sh +++ b/packages/update_versions.sh @@ -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" {} \;