diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index a0e8dc3b..99616152 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -13,21 +13,25 @@ jobs: strategy: matrix: os: [ubuntu-20.04, macos-latest, windows-latest] - arch: [amd64] + arch: [amd64, arm64] include: - - os: ubuntu-20.04 - target: "./cmd/longtail/longtail" - platform: linux - tag: "${GITHUB_REF_NAME}" - - os: macos-latest - target: "./cmd/longtail/longtail" - platform: macos - tag: "${GITHUB_REF_NAME}" - arch: arm64 - - os: windows-latest - target: "./cmd/longtail/longtail.exe" - platform: win32 - tag: "${env:GITHUB_REF_NAME}" + - os: ubuntu-20.04 + target: "./cmd/longtail/longtail" + platform: linux + tag: "${GITHUB_REF_NAME}" + - os: macos-latest + target: "./cmd/longtail/longtail" + platform: macos + tag: "${GITHUB_REF_NAME}" + - os: windows-latest + target: "./cmd/longtail/longtail.exe" + platform: win32 + tag: "${env:GITHUB_REF_NAME}" + exclude: + - os: ubuntu-20.04 + arch: arm64 + - os: windows-latest + arch: arm64 runs-on: ${{matrix.os}}