Skip to content

Commit

Permalink
add protoc to builds
Browse files Browse the repository at this point in the history
  • Loading branch information
seunlanlege committed Oct 31, 2023
1 parent f5e11b0 commit b43c88a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,24 @@ jobs:
- uses: swatinem/rust-cache@v2
- name: Install cargo-dist
run: ${{ matrix.install_dist }}

- uses: webfactory/ssh-agent@v0.5.4
with:
ssh-private-key: "${{ secrets.SSH_KEY }}"

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.9.1'

- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly

- name: Add wasm toolchain
run: rustup target add wasm32-unknown-unknown

- name: Install dependencies
run: |
${{ matrix.packages_install }}
Expand Down
3 changes: 3 additions & 0 deletions parachain/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ build = "build.rs"
upgrade-guid = "E148C7E5-DD8C-4069-A929-7819413D7954"
path-guid = "7E49FF96-173C-489B-8BB4-3933C5A62BFE"

[package.metadata.dist]
features = ["goerli"]

[dependencies]
# crates.io
clap = { version = "4.0.32", features = ["derive"] }
Expand Down

0 comments on commit b43c88a

Please sign in to comment.