Skip to content

Commit

Permalink
Merge pull request #37841 from gsmet/docker-native
Browse files Browse the repository at this point in the history
Also condition docker config update in native tests
  • Loading branch information
gsmet authored Dec 20, 2023
2 parents e4d93a1 + 3b38c21 commit d656d3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci-actions-incremental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,9 @@ jobs:
# We do this so we can get better analytics for the downloaded version of the build images
- name: Update Docker Client User Agent
run: |
cat <<< $(jq '.HttpHeaders += {"User-Agent": "Quarkus-CI-Docker-Client"}' ~/.docker/config.json) > ~/.docker/config.json
if [ -f ~/.docker/config.json ]; then
cat <<< $(jq '.HttpHeaders += {"User-Agent": "Quarkus-CI-Docker-Client"}' ~/.docker/config.json) > ~/.docker/config.json
fi
- name: Restore Maven Repository
uses: actions/cache/restore@v3
with:
Expand Down

0 comments on commit d656d3c

Please sign in to comment.