Skip to content

Commit

Permalink
Update Release.yml
Browse files Browse the repository at this point in the history
Added arm64 to release
  • Loading branch information
bunty95 authored Jul 4, 2024
1 parent 49a0348 commit 0432c3f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ on:
jobs:
buildMac:
name: Build macOS
runs-on: macos-13
runs-on: ${{ matrix.macos }}
strategy:
matrix:
macos: [ macos-13 ]
xcode: [ Xcode_15.2 ]
include:
- macos: macos-14
xcode: Xcode
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -58,12 +62,12 @@ jobs:
- name: Build project
run: scripts/darwin/build.sh
- name: Archive artifact
run: zip DLT-macOS.zip -r build/dist
run: zip DLT-macOS-${{ matrix.macos }}.zip -r build/dist
- name: Upload DLT artifact
uses: actions/upload-artifact@v4
with:
name: DLT-Mac
path: DLT-macOS.zip
path: DLT-macOS-${{ matrix.macos }}.zip

createRelease:
name: Create release
Expand Down

0 comments on commit 0432c3f

Please sign in to comment.