From 9b7f7c80479f742bbfd2e101e5648888771651dc Mon Sep 17 00:00:00 2001 From: zijiren233 Date: Wed, 20 Nov 2024 14:18:24 +0800 Subject: [PATCH] fix: env name --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .github/workflows/release_dev.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c3104389..7a2462fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,8 +49,8 @@ jobs: - name: Build targets uses: zijiren233/go-build-action@v1 env: - ARM_SUBMICRO_DISABLED: true - ARM64_MICRO_DISABLED: true + SUBMICRO_ARM_DISABLED: true + MICRO_ARM64_DISABLED: true with: targets: ${{ matrix.target }} enable-micro: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 33d83d81..46cf407f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,8 +46,8 @@ jobs: - name: Build targets uses: zijiren233/go-build-action@v1 env: - ARM_SUBMICRO_DISABLED: true - ARM64_MICRO_DISABLED: true + SUBMICRO_ARM_DISABLED: true + MICRO_ARM64_DISABLED: true with: targets: ${{ matrix.target }} enable-micro: true diff --git a/.github/workflows/release_dev.yml b/.github/workflows/release_dev.yml index 7b431c27..b879c4d9 100644 --- a/.github/workflows/release_dev.yml +++ b/.github/workflows/release_dev.yml @@ -40,8 +40,8 @@ jobs: - name: Build targets uses: zijiren233/go-build-action@v1 env: - ARM_SUBMICRO_DISABLED: true - ARM64_MICRO_DISABLED: true + SUBMICRO_ARM_DISABLED: true + MICRO_ARM64_DISABLED: true with: targets: ${{ matrix.target }} enable-micro: true