File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ jobs:
138
138
139
139
- name : Build AppImage
140
140
shell : bash
141
- if : matrix.build == 'x86_64-linux'
141
+ if : matrix.build == 'aarch64-linux' || matrix.build == ' x86_64-linux'
142
142
run : |
143
143
mkdir dist
144
144
@@ -147,8 +147,10 @@ jobs:
147
147
name=${GITHUB_REF:10}
148
148
fi
149
149
150
+ build="${{ matrix.build }}"
151
+
150
152
export VERSION="$name"
151
- export ARCH=x86_64
153
+ export ARCH=${build%-linux}
152
154
export APP=helix
153
155
export OUTPUT="helix-$VERSION-$ARCH.AppImage"
154
156
export UPDATE_INFORMATION="gh-releases-zsync|$GITHUB_REPOSITORY_OWNER|helix|latest|$APP-*-$ARCH.AppImage.zsync"
@@ -245,7 +247,7 @@ jobs:
245
247
mv bins-$platform/hx$exe $pkgname
246
248
chmod +x $pkgname/hx$exe
247
249
248
- if [[ "$platform" = "x86_64-linux" ]]; then
250
+ if [[ "$platform" = "aarch64-linux" || "$platform" = " x86_64-linux" ]]; then
249
251
mv bins-$platform/helix-*.AppImage* dist/
250
252
fi
251
253
You can’t perform that action at this time.
0 commit comments