Skip to content

Commit

Permalink
build: remove support darwin / macos builds
Browse files Browse the repository at this point in the history
actions/setup-go@v5 is broken on `macos-latest` right now and we don't really want to support SShportal on a macos
  • Loading branch information
libvoid committed Apr 24, 2024
1 parent 1a260bb commit d43beb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
builds:
- goos: [linux, darwin, windows]
- goos: [linux, windows]
goarch: [386, amd64, arm64]
ldflags:
- -s -w -X main.GitSha={{.ShortCommit}} -X main.GitBranch=master -X main.GitTag={{.Version}}
Expand Down

0 comments on commit d43beb5

Please sign in to comment.