When i try for example to install a package with composer require PACKAGE_NAME:1.0.0 composer tries to download https://HOST/dists/PACKAGE_NAME/1.0.0.0/.zip
I assume there should be something before ".zip". In the composer.lock i can see the definition:
https://HOST/dists/%package%/%version%/%reference%.%type%
So for me it looks like %reference% is missing in the URL that composer tries to download.
Is there certain attributes i have to add to the composer.json of my artifacts for artifacts to work properly? Or something else that i have to configure specifially for artifacts?
When i add a package with repository type "Gitlab" everything works great.