Skip to content

Commit

Permalink
ci: pin GitHub Actions macos runner version and build for darwin/amd64
Browse files Browse the repository at this point in the history
  • Loading branch information
suzuki-shunsuke committed Apr 25, 2024
1 parent 75cc90a commit d73df1c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/post-merge.yaml
Expand Up @@ -108,7 +108,7 @@ jobs:

release-build-darwin:
name: Release Build (darwin)
runs-on: macos-latest
runs-on: macos-14
needs: generate
steps:
- name: Check out code
Expand All @@ -124,7 +124,10 @@ jobs:
go-version: ${{ steps.go_version.outputs.go_version }}

- name: Build Darwin
run: make ci-build-darwin ci-build-darwin-arm64-static
run: |
make ci-build-darwin GOARCH=amd64
make ci-build-darwin GOARCH=arm64
make ci-build-darwin-arm64-static
timeout-minutes: 30
env:
TELEMETRY_URL: ${{ secrets.TELEMETRY_URL }}
Expand Down

0 comments on commit d73df1c

Please sign in to comment.