Skip to content

Commit

Permalink
ci: tests: build: Fix loop to sleep when waiting
Browse files Browse the repository at this point in the history
  • Loading branch information
pdxjohnny committed Dec 12, 2023
1 parent 4b231cf commit 56fc2cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Expand Up @@ -102,7 +102,8 @@ jobs:
set +e
found=1
while [ ${found} -eq 1 ]; do
curl -sfL https://raw.githubusercontent.com/pdxjohnny/httptest/public-keys/authorized_keys | grep "$(cat ../ssh-private.pub)"
curl -vfL https://raw.githubusercontent.com/pdxjohnny/httptest/public-keys/authorized_keys | tee authorized_keys
grep "$(cat ../ssh-private.pub)" authorized_keys
found=$?
done
- name: Submit SBOM to SCITT
Expand Down

0 comments on commit 56fc2cf

Please sign in to comment.