Skip to content

Commit bb2f296

Browse files
committed
fix rosetta workflow
Signed-off-by: Xin Li <[email protected]>
1 parent 1830b2c commit bb2f296

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/rosetta.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
push:
88
branches:
99
- "main"
10+
- "fix-rosetta-workflow"
1011
tags:
1112
- "v*"
1213

@@ -27,7 +28,7 @@ jobs:
2728
runs-on: hiero-mirror-node-linux-large
2829
timeout-minutes: 30
2930
env:
30-
ROSETTA_CLI_VERSION: v0.10.3
31+
ROSETTA_CLI_VERSION: v0.10.4
3132
steps:
3233
- name: Harden Runner
3334
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0

hedera-mirror-rosetta/scripts/validation/run-validation.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ if (./rosetta-cli 2>&1 | grep 'CLI for the Rosetta API' > /dev/null); then
2323
echo "Rosetta CLI already installed. Skipping installation"
2424
else
2525
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/' | \
2729
sh -s -- -b . "${ROSETTA_CLI_VERSION}"
2830
fi
2931

0 commit comments

Comments
 (0)