chore: disable arm64 micro

pull/268/head
zijiren233 2 years ago
parent 2010e1dc8f
commit 1bbd38295f

@ -35,6 +35,7 @@ jobs:
strategy:
matrix:
target: ${{ fromJson(needs.get-targets.outputs.targets) }}
disabled-micro: ["arm64"]
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
@ -61,7 +62,7 @@ jobs:
uses: zijiren233/go-build-action@v1
with:
targets: ${{ matrix.target }}
enable-micro: true
enable-micro: ${{ !endsWith(matrix.target, '-arm64') }}
config-args: --skip-init-web
- name: Get artifact name

@ -58,7 +58,7 @@ jobs:
uses: zijiren233/go-build-action@v1
with:
targets: ${{ matrix.target }}
enable-micro: true
enable-micro: ${{ !endsWith(matrix.target, '-arm64') }}
config-args: --version="v${{ steps.get_version.outputs.VERSION }}"
- name: Release

@ -52,7 +52,7 @@ jobs:
uses: zijiren233/go-build-action@v1
with:
targets: ${{ matrix.target }}
enable-micro: true
enable-micro: ${{ !endsWith(matrix.target, '-arm64') }}
- name: Release
uses: softprops/action-gh-release@v2

Loading…
Cancel
Save