Skip to content

Commit

Permalink
fix: handle arm64 architecture as aarch64 in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dz0ny committed Jan 9, 2025
1 parent 2be19a2 commit 2c15d23
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
mkdir -p apt/arch/
for file in dist/*.pkg.tar.zst ; do \
arch=$(basename $file .archlinux.pkg.tar.zst | sed 's/.*_//') ; \
if [ "$arch" = "arm64" ]; then arch="aarch64"; fi ; \
echo "Processing arch $arch..." && \
mkdir -p apt/aur/stable/$arch && \
cp dist/*_$arch.archlinux.pkg.tar.zst apt/aur/stable/$arch && \
Expand Down

0 comments on commit 2c15d23

Please sign in to comment.