File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed
Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change 1- name : Build and Release Rust Project
1+ name : Build and Release Aligned Client
22
33on :
44 push :
77
88jobs :
99 build :
10- runs-on : ubuntu-latest
10+ strategy :
11+ matrix :
12+ include :
13+ - os : ubuntu-latest
14+ artifact_name : aligned-x86
15+ - os : macos-latest
16+ artifact_name : aligned-arm64
17+
18+ runs-on : ${{ matrix.os }}
1119
1220 steps :
1321 - name : Checkout repository
1422 uses : actions/checkout@v4
1523
1624 - name : Build batcher client
1725 run : make build_batcher_client
26+
27+ - name : Rename binary
28+ run : mv batcher/client/target/release/aligned ${{ matrix.artifact_name }}
1829
1930 - name : Release
2031 uses : softprops/action-gh-release@v2
2132 with :
22- files : batcher/client/target/release/aligned
33+ files : ${{ matrix.artifact_name }}
You can’t perform that action at this time.
0 commit comments