We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ffc02e commit 0ee5bafCopy full SHA for 0ee5baf
1 file changed
.github/workflows/ci.yml
@@ -677,9 +677,10 @@ jobs:
677
-c protocol.version=2 \
678
-c "http.https://github.com/.extraheader=AUTHORIZATION: basic ${auth_header}" \
679
fetch --no-tags --prune --no-recurse-submodules --depth=1 origin \
680
- "+${CHECKOUT_SHA}:refs/remotes/origin/ci-target"
+ "+${CHECKOUT_SHA}:refs/remotes/origin/ci-target" || return 1
681
682
- git -C "$workdir" checkout --force --detach "$CHECKOUT_SHA"
+ git -C "$workdir" checkout --force --detach "$CHECKOUT_SHA" || return 1
683
+ test -f "$workdir/.github/actions/setup-node-env/action.yml" || return 1
684
echo "checkout attempt ${attempt}/2 succeeded"
685
}
686
0 commit comments