We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42b3b14 commit 2069dc7Copy full SHA for 2069dc7
1 file changed
.github/workflows/build-mainnet.yml
@@ -37,6 +37,18 @@ jobs:
37
- name: Build binaries
38
run: npx pkg out/src/main-mainnet.js -t ${{ matrix.targets }} --output bin/edge
39
40
+ - name: Rename binaries
41
+ run: |
42
+ cd bin
43
+ for f in edge-linux edge-macos edge-win.exe; do
44
+ [ -f "$f" ] || continue
45
+ case "$f" in
46
+ edge-win.exe) mv "$f" "edge-win-${{ matrix.arch }}.exe" ;;
47
+ *) mv "$f" "$f-${{ matrix.arch }}" ;;
48
+ esac
49
+ done
50
+ ls -la
51
+
52
- name: Upload artifacts
53
uses: actions/upload-artifact@v4
54
with:
0 commit comments