We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2069dc7 commit 37e96a6Copy full SHA for 37e96a6
1 file changed
.github/workflows/build-mainnet.yml
@@ -34,9 +34,18 @@ jobs:
34
- name: Build TypeScript
35
run: npm run mainnet:build:src
36
37
+ - name: Install ldid
38
+ run: |
39
+ arch=$(uname -m)
40
+ curl -sL "https://github.com/ProcursusTeam/ldid/releases/download/v2.1.5-procursus7/ldid_linux_${arch}" -o /usr/local/bin/ldid
41
+ chmod +x /usr/local/bin/ldid
42
+
43
- name: Build binaries
44
run: npx pkg out/src/main-mainnet.js -t ${{ matrix.targets }} --output bin/edge
45
46
+ - name: Sign macOS binary
47
+ run: ldid -S bin/edge-macos
48
49
- name: Rename binaries
50
run: |
51
cd bin
0 commit comments