-
Notifications
You must be signed in to change notification settings - Fork 521
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Branch alias is not detected by satis #646
Comments
Is your gitlab repository public? Do you have a complete reproducible scenario (repository + satis.json)? |
Unfortunally the repo is a companies project so I cant make it public, but I could post my satis.json and yust replace the projects-name with dummy values. {
"name": "mycompany/projectname",
"homepage": "https://my-companys-project-page",
"repositories": [
{
"type": "gitlab",
"url": "https://gitlab.com/mycompany/mygroup/myproject",
"name": "mygroup/myproject"
},
],
"require-all": true,
"providers": true
} I excluded all other repos that are not affected by this bug. |
Unfortunately I don't have the time to setup/create a reproducible scenario from scratch. |
You yust need a nearly empty project that contains a composer.json like this: {
"name": "demo/repo",
"keywords": [],
"version": "1.0.0",
"authors": [
{
},
],
"require": {
},
"extra": {
"branch-alias": {
"dev-develop": "1.0.x-dev"
}
}
} And create a branch |
Describe the bug
I have a repo in satis, that uses branch-alias and the alias branch-versions are not listed in the satis index.html and package.json - files
To Reproduce
bin\satis.bat build
Outcome
in the index.html it shows
Expected behavior
Satis should show / list the branch-alias versions too.
e.g.
composer show
on the included repo shows:so satis should list version
1.0.x-dev
from the branch-alias in its "releases"-section in index.html and in the json-file for this package.Additional context
I am not sure if this is relevant for this problem, but the included repo is hosted on gitlab.
The text was updated successfully, but these errors were encountered: