We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e3d827 + 597e3a5 commit 32e7e49Copy full SHA for 32e7e49
.github/workflows/update-tika-version.yaml
@@ -41,6 +41,7 @@ jobs:
41
if [ -n "${{ github.event.inputs.tag }}" ]; then
42
NEW_TAG="${{ github.event.inputs.tag }}"
43
else
44
+<<<<<<< HEAD
45
RESPONSE=$(curl -sf "https://hub.docker.com/v2/repositories/apache/tika/tags?page_size=10&ordering=last_updated") || {
46
echo "::error::Failed to fetch tags from DockerHub API"
47
exit 1
@@ -50,6 +51,10 @@ jobs:
50
51
echo "Tags returned by DockerHub: $ALL_TAGS"
52
53
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
58
| grep -E '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-full$' \
59
| sort -V \
60
| tail -1)
0 commit comments