Skip to content

Commit

Permalink
fix naming stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
williamhCode committed Oct 29, 2024
1 parent ba8e09d commit 45a3378
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ jobs:
os: [macos-latest, macos-13]
include:
- os: macos-latest
os-name: macos
arch: arm64

- os: macos-13
os-name: macos
arch: x86

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -56,5 +58,5 @@ jobs:
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: Neogurt-${{ matrix.arch }}.dmg
name: Neogurt-${{ matrix.os-name }}-${{ matrix.arch }}
path: build/release/*.dmg
1 change: 1 addition & 0 deletions CmakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ if (CMAKE_BUILD_TYPE MATCHES RelWithDebInfo)
")

set(CPACK_GENERATOR DragNDrop)
set(CPACK_PACKAGE_FILE_NAME "Neogurt-${PROJECT_VERSION}-${CMAKE_HOST_SYSTEM_PROCESSOR}")
include(CPack)
endif()
endif()

0 comments on commit 45a3378

Please sign in to comment.