Skip to content

Commit

Permalink
fix arm binaries, rename arm64 to aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaariel91 committed Aug 20, 2024
1 parent 2ec6108 commit dfc2798
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-14]
arch: [x64, arm64]
arch: [x64, aarch64]

steps:
- name: Checkout code
Expand All @@ -23,8 +23,8 @@ jobs:
echo "Setting up environment for ${{ matrix.arch }}"
if [ "${{ matrix.arch }}" == "x64" ]; then
echo "TARGET_ARCH=x86_64" >> $GITHUB_ENV
elif [ "${{ matrix.arch }}" == "arm64" ]; then
echo "TARGET_ARCH=arm64" >> $GITHUB_ENV
elif [ "${{ matrix.arch }}" == "aarch64" ]; then
echo "TARGET_ARCH=aarch64" >> $GITHUB_ENV
fi
- name: Build
Expand Down

0 comments on commit dfc2798

Please sign in to comment.