diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index a34ee47..c4e6322 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -42,24 +42,24 @@ jobs:
       - run: cargo bundle --release --target aarch64-apple-darwin
       - run: tar -cvf OutDebug/macOSDebug.tar -C target/x86_64-apple-darwin/debug/bundle/osx/ $(ls target/x86_64-apple-darwin/debug/bundle/osx/)
       - run: tar -cvf Out/macOSRelease.tar -C target/x86_64-apple-darwin/release/bundle/osx/ $(ls target/x86_64-apple-darwin/release/bundle/osx/)
-      - run: tar -cvf OutDebug/macOSDebugAArch64.tar -C target/aarch64-apple-darwin/debug/bundle/osx/ $(ls target/aarch64-apple-darwin/debug/bundle/osx/)
-      - run: tar -cvf Out/macOSReleaseAArch64.tar -C target/aarch64-apple-darwin/release/bundle/osx/ $(ls target/aarch64-apple-darwin/release/bundle/osx/)
+      - run: tar -cvf OutDebug/macOSDebugAppleSilicon.tar -C target/aarch64-apple-darwin/debug/bundle/osx/ $(ls target/aarch64-apple-darwin/debug/bundle/osx/)
+      - run: tar -cvf Out/macOSReleaseAppleSilicon.tar -C target/aarch64-apple-darwin/release/bundle/osx/ $(ls target/aarch64-apple-darwin/release/bundle/osx/)
       - uses: actions/upload-artifact@v4.3.3
         with:
-          name: macOS x86_64 Debug
+          name: macOS Debug
           path: OutDebug/macOSDebug.tar
       - uses: actions/upload-artifact@v4.3.3
         with:
-          name: macOS x86_64 Release
+          name: macOS Release
           path: Out/macOSRelease.tar
       - uses: actions/upload-artifact@v4.3.3
         with:
-          name: macOS AArch64 Debug
-          path: OutDebug/macOSDebugAArch64.tar
+          name: macOS Apple Silicon Debug
+          path: OutDebug/macOSDebugAppleSilicon.tar
       - uses: actions/upload-artifact@v4.3.3
         with:
-          name: macOS AArch64 Release
-          path: Out/macOSReleaseAArch64.tar
+          name: macOS Apple Silicon Release
+          path: Out/macOSReleaseAppleSilicon.tar
 
   build-linux:
     name: Build Linux