Update move-ci.yml #139
This workflow graph cannot be shown
A graph will be generated the next time this workflow is run.
Annotations
1 error
|
Invalid workflow file:
.github/workflows/move-ci.yml#L1
(Line: 17, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory, (Line: 19, Col: 5): Unexpected value 'GH_TOKEN', (Line: 20, Col: 5): Unexpected value 'GITHUB_TOKEN', (Line: 19, Col: 5): There's not enough info to determine what you meant. Add one of these properties: cancel-timeout-minutes, container, continue-on-error, defaults, env, environment, outputs, runs-on, secrets, services, snapshot, steps, timeout-minutes, uses, with, (Line: 21, Col: 8): Unexpected value 'set -euo pipefail
# ретрай с экспоненциальной задержкой, если вдруг API снова вернёт 403
for i in 0 1 2 3; do
if curl -sSL "https://aptos.dev/scripts/install_cli.py" | python3; then
break
fi
echo "Install failed, retry in $((2**i))s..."
sleep $((2**i))
done
echo "$HOME/.local/bin" >> $GITHUB_PATH
aptos --version
- name: Static sanity checks
run: |
set -euo pipefail
# 1) нет [...]
|