File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -48,14 +48,11 @@ jobs:
48
48
uses : actions-rs/cargo@v1
49
49
with :
50
50
command : build
51
- args : --release
51
+ args : cd ./cmd/starcoin && cargo build --release
52
52
53
53
- name : build starcoin release asset
54
54
run : bash ./scripts/release.sh ${{ matrix.platform }}
55
55
56
- - name : build mpm release asset
57
- run : bash ./scripts/release_mpm.sh ${{ matrix.platform }}
58
-
59
56
- name : upload artifact asset
60
57
uses : actions/upload-artifact@v2
61
58
if : ${{ github.event_name != 'release'}}
Original file line number Diff line number Diff line change 2
2
rm -rf starcoin-artifacts/*
3
3
mkdir -p starcoin-artifacts/
4
4
cp -v target/release/starcoin starcoin-artifacts/
5
- cp -v target/release/starcoin_miner starcoin-artifacts/
6
- cp -v target/release/starcoin_generator starcoin-artifacts/
7
- cp -v target/release/mpm starcoin-artifacts/
8
- cp -v target/release/starcoin_db_exporter starcoin-artifacts/
9
- cp -v scripts/import_block.sh starcoin-artifacts/
10
- cp -v scripts/import_snapshot.sh starcoin-artifacts/
11
- cp -v scripts/verify_header.sh starcoin-artifacts/
12
5
cp -v README.md starcoin-artifacts/
13
6
if [ " $1 " == " windows-latest" ]; then
14
7
7z a -r starcoin-$1 .zip starcoin-artifacts
You can’t perform that action at this time.
0 commit comments