Skip to content

Commit bf171ce

Browse files
committed
fix(ci): correct ARM64 architecture naming in Arch workflow
- Fix PROTOC_ARCH_NAME: aarch_64 → aarch64 (matches protobuf releases) - Fix PKGBUILD arch field: use ${ARCH} variable instead of hardcoded 'x86_64' - Ensures ARM64 builds will work when re-enabled Addresses CodeRabbit findings
1 parent ad69eb6 commit bf171ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/linux_packages_arch.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
pkgver=${VERSION}
167167
pkgrel=1
168168
pkgdesc="AI-powered note-taking and transcription application"
169-
arch=('x86_64')
169+
arch=("${ARCH}")
170170
url="https://github.com/different-ai/hyprnote"
171171
license=('custom')
172172
depends=(
@@ -238,7 +238,7 @@ jobs:
238238
if [[ "${{ matrix.arch }}" == "x86_64" ]]; then
239239
PROTOC_ARCH_NAME="x86_64"
240240
else
241-
PROTOC_ARCH_NAME="aarch_64"
241+
PROTOC_ARCH_NAME="aarch64"
242242
fi
243243
244244
# Run build in Docker container with appropriate platform

0 commit comments

Comments
 (0)