mirror of
https://github.com/lukaszraczylo/filepuff-mcp.git
synced 2026-06-05 22:23:50 +00:00
ad696a51d8
Intel Macs are no longer receiving macOS updates. Drop from release matrix and re-add to goreleaser ignore list. install.sh now prints a clear message pointing Intel users to build-from-source. README manual-install section no longer advertises a darwin_amd64 URL.
31 lines
816 B
YAML
31 lines
816 B
YAML
name: Test, build, release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '**/release.yaml'
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
id-token: write
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
release:
|
|
uses: lukaszraczylo/shared-actions/.github/workflows/go-release-cgo.yaml@main
|
|
with:
|
|
go-version: "1.25"
|
|
rolling-release-tag: "v1"
|
|
platforms: >-
|
|
[
|
|
{"os":"macos-latest","goos":"darwin","goarch":"arm64","platform":"darwin_arm64"},
|
|
{"os":"ubuntu-latest","goos":"linux","goarch":"amd64","platform":"linux_amd64"},
|
|
{"os":"ubuntu-24.04-arm","goos":"linux","goarch":"arm64","platform":"linux_arm64"},
|
|
{"os":"windows-latest","goos":"windows","goarch":"amd64","platform":"windows_amd64"}
|
|
]
|
|
secrets: inherit
|