Skip to content

Commit 32e7e49

Browse files
committed
Merge branch 'main' into TIKA-4660
2 parents 5e3d827 + 597e3a5 commit 32e7e49

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/update-tika-version.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
if [ -n "${{ github.event.inputs.tag }}" ]; then
4242
NEW_TAG="${{ github.event.inputs.tag }}"
4343
else
44+
<<<<<<< HEAD
4445
RESPONSE=$(curl -sf "https://hub.docker.com/v2/repositories/apache/tika/tags?page_size=10&ordering=last_updated") || {
4546
echo "::error::Failed to fetch tags from DockerHub API"
4647
exit 1
@@ -50,6 +51,10 @@ jobs:
5051
echo "Tags returned by DockerHub: $ALL_TAGS"
5152

5253
NEW_TAG=$(echo "$ALL_TAGS" \
54+
=======
55+
NEW_TAG=$(curl -s "https://hub.docker.com/v2/repositories/apache/tika/tags?page_size=10&ordering=-last_updated" \
56+
| jq -r '.results[].name' \
57+
>>>>>>> main
5358
| grep -E '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-full$' \
5459
| sort -V \
5560
| tail -1)

0 commit comments

Comments
 (0)