We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1510a11 commit 4c292f6Copy full SHA for 4c292f6
1 file changed
.github/workflows/release.yml
@@ -25,7 +25,7 @@ jobs:
25
- os: macos-latest
26
target: x86_64-apple-darwin
27
artifact_name: bitcell-macos-x86_64
28
- - os: macos-latest
+ - os: macos-14 # Native ARM64 runner
29
target: aarch64-apple-darwin
30
artifact_name: bitcell-macos-aarch64
31
- os: windows-latest
@@ -52,7 +52,7 @@ jobs:
52
${{ runner.os }}-${{ matrix.target }}-cargo-
53
54
- name: Build release binaries
55
- run: cargo build --release --target ${{ matrix.target }}
+ run: cargo build --release --target ${{ matrix.target }} -p bitcell-node -p bitcell-admin
56
57
- name: Create artifact directory
58
shell: bash
@@ -77,7 +77,7 @@ jobs:
77
78
run: |
79
cd artifacts
80
- tar -czvf ../${{ matrix.artifact_name }}.tar.gz ./*
+ tar -czvf ../${{ matrix.artifact_name }}.tar.gz *
81
cd ..
82
83
- name: Create archive (Windows)
0 commit comments