From b7380313a5d5e590970742bf7eaa2f2d695b6e0c Mon Sep 17 00:00:00 2001 From: yvt Date: Sat, 3 Sep 2022 21:49:45 +0900 Subject: [PATCH] chore(ci): build AppImage for aarch64-linux --- .github/workflows/release.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 76e12eace609..7d723b98ff38 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -138,7 +138,7 @@ jobs: - name: Build AppImage shell: bash - if: matrix.build == 'x86_64-linux' + if: matrix.build == 'aarch64-linux' || matrix.build == 'x86_64-linux' run: | mkdir dist @@ -147,8 +147,10 @@ jobs: name=${GITHUB_REF:10} fi + build="${{ matrix.build }}" + export VERSION="$name" - export ARCH=x86_64 + export ARCH=${build%-linux} export APP=helix export OUTPUT="helix-$VERSION-$ARCH.AppImage" export UPDATE_INFORMATION="gh-releases-zsync|$GITHUB_REPOSITORY_OWNER|helix|latest|$APP-*-$ARCH.AppImage.zsync" @@ -245,7 +247,7 @@ jobs: mv bins-$platform/hx$exe $pkgname chmod +x $pkgname/hx$exe - if [[ "$platform" = "x86_64-linux" ]]; then + if [[ "$platform" = "aarch64-linux" || "$platform" = "x86_64-linux" ]]; then mv bins-$platform/helix-*.AppImage* dist/ fi