Pipeline job artifacts in repo
Everyone can contribute. Help move this issue forward while earning points, leveling up and collecting rewards.
So far I've got a pipeline working which runs linting, testing and finally builds into an artifact.
The artifacts are available via the URL scheme, which is great to download a zip of the latest build.
I'd like the artifact bundle to be stored in the repo itself e.g. for installing the repo as a dependency with npm like this:
// package.json
{
"dependencies": {
"project": "git+ssh://git@git.mydomain.com:group/project.git",
}
}
I think this may be possible with tags, having the pipeline commit its artifacts and then ignore that commit. Or build from a pre-master branch and commit the artifacts into master
Edited by 🤖 GitLab Bot 🤖