Browse Source

Merge pull request #11844 from hashicorp/support-darwin-arm64

pull/11854/head
Freddy 3 years ago committed by GitHub
parent
commit
26c7d19913
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/build.yml

6
.github/workflows/build.yml

@ -3,7 +3,9 @@ name: build
on: on:
push: push:
# Sequence of patterns matched against refs/heads # Sequence of patterns matched against refs/heads
branches: [ main ] branches: [
"main"
]
env: env:
PKG_NAME: consul PKG_NAME: consul
@ -169,7 +171,7 @@ jobs:
strategy: strategy:
matrix: matrix:
goos: [ darwin ] goos: [ darwin ]
goarch: [ "amd64" ] goarch: [ "amd64", "arm64" ]
go: [ "1.17.5" ] go: [ "1.17.5" ]
fail-fast: true fail-fast: true

Loading…
Cancel
Save