release automation script #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release mcp-k8s to npm | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23.3' | |
- name: Cache installed binaries | |
uses: actions/cache@v4 | |
with: | |
path: /home/runner/go/bin | |
key: ${{ runner.os }}-goreleaser | |
- name: Install goreleaser | |
run: | | |
go install github.com/goreleaser/goreleaser/v2@latest | |
which goreleaser | |
- name: Run goreleaser build | |
run: | | |
goreleaser build --clean | |
- name: Publish to npm | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: | | |
chmod +x ./packages/publish_npm.sh | |
./packages/publish_npm.sh | |