mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 02:37:59 +00:00
78e9574813
* delete substrate and polkadot binaries * use nodes should move instead of copy and remove the archive
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
name: Use substrate and polkadot binaries
|
|
description: Downloads and configures the substrate and polkadot binaries built with `build-nodes`
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Download substrate-node binary
|
|
id: download-substrate-binary
|
|
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e # v2.28.0
|
|
with:
|
|
workflow: build-nodes.yml
|
|
name: nightly-substrate-binary
|
|
|
|
- name: Download polkadot binary
|
|
id: download-polkadot-binary
|
|
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e # v2.28.0
|
|
with:
|
|
workflow: build-nodes.yml
|
|
name: nightly-polkadot-binary
|
|
|
|
- name: decompress polkadot binary
|
|
shell: bash
|
|
run: |
|
|
tar -xzvf ./polkadot.tar.gz
|
|
cp ./target/release/polkadot ./polkadot
|
|
|
|
- name: Prepare binaries
|
|
shell: bash
|
|
run: |
|
|
chmod u+x ./substrate-node
|
|
chmod u+x ./polkadot
|
|
chmod u+x ./polkadot-execute-worker
|
|
chmod u+x ./polkadot-prepare-worker
|
|
./substrate-node --version
|
|
./polkadot --version
|
|
mkdir -p ~/.local/bin
|
|
mv ./substrate-node ~/.local/bin
|
|
mv ./polkadot ~/.local/bin
|
|
mv ./polkadot-execute-worker ~/.local/bin
|
|
mv ./polkadot-prepare-worker ~/.local/bin
|
|
rm ./polkadot.tar.gz
|