Skip to content

Commit

Permalink
fix: do not raise if pulling cached layer fails
Browse files Browse the repository at this point in the history
  • Loading branch information
xgui3783 committed Aug 22, 2024
1 parent de7d011 commit c3d7364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-img.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
GIT_HASH=$(git rev-parse --short HEAD)
cached_image=${{ env.DOCKER_REGISTRY }}${{ env.DOCKER_IMG }}:latest${{ matrix.tag_suffix }}
echo "Pulling $cached_image to populate cached layers."
docker pull $cached_image
docker pull $cached_image || true
docker build --build-arg GIT_HASH=$GIT_HASH -t siibra-api-tmp-img -f ${{ matrix.dockerfile }} .
- name: "Tag and Push (rc)"
Expand Down

0 comments on commit c3d7364

Please sign in to comment.