Skip to content

Commit e71ee95

Browse files
committed
release only starcoin
1 parent 26379ec commit e71ee95

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

.github/workflows/release_asset.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,11 @@ jobs:
4848
uses: actions-rs/cargo@v1
4949
with:
5050
command: build
51-
args: --release
51+
args: cd ./cmd/starcoin && cargo build --release
5252

5353
- name: build starcoin release asset
5454
run: bash ./scripts/release.sh ${{ matrix.platform }}
5555

56-
- name: build mpm release asset
57-
run: bash ./scripts/release_mpm.sh ${{ matrix.platform }}
58-
5956
- name: upload artifact asset
6057
uses: actions/upload-artifact@v2
6158
if: ${{ github.event_name != 'release'}}

scripts/release.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22
rm -rf starcoin-artifacts/*
33
mkdir -p starcoin-artifacts/
44
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/
125
cp -v README.md starcoin-artifacts/
136
if [ "$1" == "windows-latest" ]; then
147
7z a -r starcoin-$1.zip starcoin-artifacts

0 commit comments

Comments
 (0)