Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,20 @@ jobs:
- name: Run tests
run: go test -v ./...

- name: Test goreleaser config
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
args: check

- name: Test release build (dry run)
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
args: build --snapshot --clean --single-target

build-docs:
name: Build Documentation
runs-on: ubuntu-latest
Expand Down
5 changes: 3 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ before:

builds:
- id: tekmetric-mcp
main: ./main.go
main: ./cmd/tekmetric-mcp
binary: tekmetric-mcp
env:
- CGO_ENABLED=0
Expand All @@ -27,9 +27,10 @@ builds:

archives:
- id: default
formats: ["tar.gz"]
format_overrides:
- goos: windows
format: zip
formats: ["zip"]
name_template: >-
{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}
files:
Expand Down
Loading