We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d18c4d2 + d5f7a29 commit df7ea05Copy full SHA for df7ea05
.github/workflows/node.yml
@@ -49,13 +49,16 @@ jobs:
49
- name: Install Stellar CLI
50
run: |
51
source $HOME/.cargo/env
52
- # Instalar stellar CLI desde el repositorio oficial
53
- cargo install --git https://github.com/stellar/stellar-cli --branch main stellar-cli
+ if ! command -v stellar &> /dev/null; then
+ cargo install --git https://github.com/stellar/stellar-cli --branch main stellar-cli --force
54
+ fi
55
56
- name: Install stellar-scaffold-cli
57
58
- cargo install stellar-scaffold-cli
59
+ if ! command -v stellar-scaffold &> /dev/null; then
60
+ cargo install stellar-scaffold-cli --force
61
62
63
- name: Verify installations
64
0 commit comments