From 58c4bfb8bc4889c55a6d79016334fbae3de6f5d4 Mon Sep 17 00:00:00 2001 From: Skydust Date: Sat, 21 Dec 2024 21:53:02 +0100 Subject: [PATCH] Now going for /token, because only /v2/ does not work --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 6833fd0..e1dd650 100644 --- a/action.yml +++ b/action.yml @@ -30,7 +30,7 @@ runs: response=$(curl -s -w "\n%{http_code}" \ -H "Authorization: Basic $BASE64_AUTH" \ -H "User-Agent: Docker-Client/20.10.12 (linux)" \ - "https://${PREFIXLESS_REGISTRY}/v2/") + "https://${PREFIXLESS_REGISTRY}/v2/token") http_code=$(echo "$response" | tail -n 1) response_body=$(echo "$response" | head -n -1)