Skip to content

Commit

Permalink
fix: correct variable substitution for aarch64 package renaming in re…
Browse files Browse the repository at this point in the history
…lease workflow
  • Loading branch information
dz0ny committed Jan 16, 2025
1 parent 390794c commit 12c5baf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
for file in dist/*.pkg.tar.zst ; do \
arch=$(basename $file .archlinux.pkg.tar.zst | sed 's/.*_//') ; \
if [ "$arch" = "arm64" ]; then arch="aarch64"; fi ; \
if [ "$arch" = "aarch64" ]; then mv $file ${file/arm64/arch64} ; fi ; \
if [ "$arch" = "aarch64" ]; then mv $file ${file/arm64/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 12c5baf

Please sign in to comment.