luceos I just tested it and normal Tags (e.g. 0.0.1
) are working perfectly! 🙂 I have noticed that alpha and beta tags (e.g. 0.0.2-alpha.1
or 0.0.3-beta.2
) are not synced via the API endpoint (works when syncing manually).
The workflow is always initiated, but I have noticed that for some reason the doctype of the response gets "mixed up" with the curl progress meter in alpha and beta tags:
Workflow of beta tag (auto syncing currently not working)
Run curl -X GET \
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
<!DOCTYPE html>
100 438 0 438 0 0 589 0 --:--:-- --:--:-- --:--:-- 590
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="0;url='https://extiverse.com/develop/premium-extensions'" />
<title>Redirecting to https://extiverse.com/develop/premium-extensions</title>
</head>
<body>
Redirecting to <a href="https://extiverse.com/develop/premium-extensions">https://extiverse.com/develop/premium-extensions</a>.
</body>
</html>
Workflow of regular tag (auto syncing working):
Run curl -X GET \
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
100 438 0 438 0 0 783 0 --:--:-- --:--:-- --:--:-- 784
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="0;url='https://extiverse.com/develop/premium-extensions'" />
<title>Redirecting to https://extiverse.com/develop/premium-extensions</title>
</head>
<body>
Redirecting to <a href="https://extiverse.com/develop/premium-extensions">https://extiverse.com/develop/premium-extensions</a>.
</body>
</html>
What might be the reason for this?