We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using v1.0.0
When used alongside @semantic-release/gitlab in a GitLab project only the release is created while no artifact is generated in the package registry.
@semantic-release/gitlab
Gitlab docs on installing a Composer package states that "A package in the Package Registry" is required.
Is it a bug o it has not been meant to work on Gitlab?
The text was updated successfully, but these errors were encountered:
Yes, we had the same problem. We solved it by running a deploy job only on tags:
deploy
deploy: stage: deploy script: - 'curl --header "Job-Token: $CI_JOB_TOKEN" --data tag=$CI_COMMIT_TAG "${CI_API_V4_URL}/projects/$CI_PROJECT_ID/packages/composer"' only: - tags
This should create the package in the Gitlab registry as well.
Sorry, something went wrong.
No branches or pull requests
Using v1.0.0
When used alongside
@semantic-release/gitlab
in a GitLab project only the release is created while no artifact is generated in the package registry.Gitlab docs on installing a Composer package states that "A package in the Package Registry" is required.
Is it a bug o it has not been meant to work on Gitlab?
The text was updated successfully, but these errors were encountered: