We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 982bcd4 commit d5f7a29Copy full SHA for d5f7a29
.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