From b93a3c14b5440c118c9fd055fc5fd46a092e991c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B7=B7=E6=B7=86?= <32300164+mnixry@users.noreply.github.com> Date: Mon, 3 Aug 2020 20:09:52 +0800 Subject: [PATCH] Fix syntax error in ci.yml --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47593da1..cdbcfc98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,13 +7,13 @@ jobs: name: Build binary CI runs-on: ubuntu-latest strategy: - matrix: - # build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/386, darwin/amd64 - goos: [linux, windows, darwin] - goarch: ["386", amd64, arm] - exclude: - - goos: darwin - goarch: arm + matrix: + # build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/386, darwin/amd64 + goos: [linux, windows, darwin] + goarch: ["386", amd64, arm] + exclude: + - goos: darwin + goarch: arm steps: - uses: actions/checkout@v2