From f9a73e018cfcfa3d6bedf07f8ec57e103969b81c Mon Sep 17 00:00:00 2001 From: harveyhans <32636532+kairusds@users.noreply.github.com> Date: Fri, 22 Dec 2023 10:07:56 +0800 Subject: [PATCH] Update release-zip.yaml --- .github/workflows/release-zip.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release-zip.yaml b/.github/workflows/release-zip.yaml index cad6643..b5afcff 100644 --- a/.github/workflows/release-zip.yaml +++ b/.github/workflows/release-zip.yaml @@ -12,25 +12,21 @@ jobs: steps: - uses: actions/checkout@main - name: Install dependencies for build (Apt) - shell: bash run: | sudo env DEBIAN_FRONTEND=noninteractive apt update -y && \ sudo env DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends libarchive-tools curl jq tree - name: Build Zip x64 - shell: bash env: ARCH: 'x64' OUT_ZIP: 'Alpine.zip' LNCR_EXE: 'alpine-3.19.0.exe' - run: cd src_x64 && make -j$(nproc) + run: cd src_x64 && make -j$(nproc) -e && mv Alpine.zip . - name: Build Zip ARM64 - shell: bash env: ARCH: 'arm64' OUT_ZIP: 'Alpine_arm64.zip' LNCR_EXE: 'alpine_arm64-3.19.0.exe' - run: cd src_arm64 && make -j$(nproc) - - run: tree + run: cd src_arm64 && make -j$(nproc) -e && mv Alpine_arm64.zip . - name: Upload a Build Artifact x64 uses: actions/upload-artifact@main with: