Skip to content

Commit

Permalink
fix(build): correct remaining typos in aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
nwesterhausen committed Feb 18, 2024
1 parent 9e40edd commit e96562e
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 @@ -179,7 +179,7 @@ jobs:
tag: ${{ github.ref }}
overwrite: true

# Build for MacOS x86_64 and aaarch64
# Build for MacOS x86_64 and aarch64
release-macOS:
runs-on: macOS-latest
# To upload artifacts, contents write permission is required
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
- name: Build
run: |
cargo build --release --target x86_64-apple-darwin # Intel
cargo build --release --target aaarch64-apple-darwin # Apple Silicon
cargo build --release --target aarch64-apple-darwin # Apple Silicon
- name: Prepare Package
run: |
Expand All @@ -221,7 +221,7 @@ jobs:
cp -r game_data ${{ env.binary }}.app/Contents/MacOS/
lipo "target/x86_64-apple-darwin/release/${{ env.binary }}" \
"target/aaarch64-apple-darwin/release/${{ env.binary }}" \
"target/aarch64-apple-darwin/release/${{ env.binary }}" \
-create -output ${{ env.binary }}.app/Contents/MacOS/${{ env.binary }}
hdiutil create -fs HFS+ -volname "${{ env.binary }}" -srcfolder ${{ env.binary }}.app ${{ env.binary }}-macOS.dmg
Expand Down

0 comments on commit e96562e

Please sign in to comment.