Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
Signed-off-by: NikitaSkrynnik <[email protected]>
  • Loading branch information
NikitaSkrynnik committed Apr 4, 2024
1 parent ba40522 commit 8d71503
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,22 @@ jobs:
with:
config_file: .yamllint.yml
strict: true

image-check:
name: Check that image is pullable
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Check images
uses: nick-invision/retry@v2
with:
timeout_minutes: 1
max_attempts: 3
retry_on: timeout
command: |
repoName=${GITHUB_REF#refs/heads/update/networkservicemesh/}
images=$(grep -roh 'apps' -e "ghcr.io/networkservicemesh/ci/${repoName}.*")
for image in $images; do
docker pull $image
done

0 comments on commit 8d71503

Please sign in to comment.