File tree 2 files changed +5
-2
lines changed
hedera-mirror-rosetta/scripts/validation
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 7
7
push :
8
8
branches :
9
9
- " main"
10
+ - " fix-rosetta-workflow"
10
11
tags :
11
12
- " v*"
12
13
27
28
runs-on : hiero-mirror-node-linux-large
28
29
timeout-minutes : 30
29
30
env :
30
- ROSETTA_CLI_VERSION : v0.10.3
31
+ ROSETTA_CLI_VERSION : v0.10.4
31
32
steps :
32
33
- name : Harden Runner
33
34
uses : step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ if (./rosetta-cli 2>&1 | grep 'CLI for the Rosetta API' > /dev/null); then
23
23
echo " Rosetta CLI already installed. Skipping installation"
24
24
else
25
25
echo " Installing Rosetta CLI"
26
- curl -sSfL https://raw.githubusercontent.com/coinbase/rosetta-cli/master/scripts/install.sh | \
26
+ # rosetta-cli repo has been renamed to mesh-cli, however the install script didn't change the repo accordingly
27
+ curl -sSfL https://raw.githubusercontent.com/coinbase/mesh-cli/master/scripts/install.sh | \
28
+ sed -e ' s/^REPO=.*/REPO=mesh-cli/' | \
27
29
sh -s -- -b . " ${ROSETTA_CLI_VERSION} "
28
30
fi
29
31
You can’t perform that action at this time.
0 commit comments