-
Notifications
You must be signed in to change notification settings - Fork 28
55 lines (45 loc) · 1.41 KB
/
publish-release-binary.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Publish Binary
on:
push:
tags:
- '*'
jobs:
build:
name: Publish binaries
runs-on: ubuntu-20.04
strategy:
matrix:
features: [testnet, default, txpool]
steps:
- uses: actions/checkout@v3
- name: Install toolchain
id: toolchain
uses: actions-rs/toolchain@master
with:
profile: minimal
toolchain: nightly
target: wasm32-unknown-unknown
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Install Protobuf
run: sudo apt-get install protobuf-compiler
- name: Build binary
run: cargo build --release -p tangle --locked --features ${{ matrix.features }}
- name: Calculate SHA256
run: sha256sum target/release/tangle > target/release/tangle.sha256sum
- name: Upload ${{ matrix.features }} binary to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/release/tangle
asset_name: tangle-${{ matrix.features }}-linux-amd64
tag: ${{ github.ref }}
overwrite: true
- name: Uplaod SHA256 of the binary
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/release/tangle.sha256sum
asset_name: tangle-${{ matrix.features }}-linux-amd64.sha256sum
tag: ${{ github.ref }}
overwrite: true