Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

ci: add necessary bin setups to release workflow #685

Merged
merged 1 commit into from
Mar 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,28 @@ jobs:
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
- name: Setup Polkadot
uses: ./.github/actions/setup-binary
with:
binary-name: polkadot
binary-version: v0.9.37
binary-github: https://github.com/paritytech/polkadot
- name: Setup Cumulus
uses: ./.github/actions/setup-binary
with:
binary-name: polkadot-parachain
binary-version: v0.9.370
binary-github: https://github.com/paritytech/cumulus
- name: Setup substrate-contracts-node
uses: ./.github/actions/setup-substrate-contracts-node
with:
version: v0.24.0
- name: Setup Zombienet
uses: ./.github/actions/setup-binary
with:
binary-name: zombienet-linux-x64
binary-version: v1.3.30
binary-github: https://github.com/paritytech/zombienet
- name: Build NPM Package
run: deno task dnt ${{steps.get_tag_version.outputs.tag_version}}
- run: npm pack
Expand Down