Skip to content

Commit 52a2949

Browse files
committed
Add macOS universal binary creation
1 parent e07d3a5 commit 52a2949

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/build-packages.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,22 @@ jobs:
4444
with:
4545
name: packages
4646
path: |
47-
packaging/debian/*.deb
47+
packaging/debian/*.deb
48+
49+
macos-universal:
50+
needs: build-packages
51+
runs-on: ubuntu-latest
52+
steps:
53+
- name: Create Universal Binary
54+
uses: manojkarthick/[email protected]
55+
env:
56+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
57+
with:
58+
owner: ${{ github.repository_owner }}
59+
repo: ${{ github.event.repository.name }}
60+
tag: ${{ github.ref_name }}
61+
amd64: "darwin-amd64"
62+
arm64: "darwin-arm64"
63+
compressed: "true"
64+
overwrite: "true"
65+
universal-identifier: "darwin-universal"

0 commit comments

Comments
 (0)