Use gitlab to deploy files to servers
we have a private jar file that we consistently deploy to different servers (DEV, TEST, PROD). For CI/CD we are using gitlab.
How do I push to a repo from within a gitlab CI merge request pipeline?
I want to make a CICD merge request pipeline that create a new file, then commit and push the change in the source branch and then continue the merging request but if i do that my pipeline is skiped after the comit_push_job and d’ont do the stage after
single gitlab pages from different jobs
I have 2 gitlab jobs in the same pipeline producing 2 different result ( html reports) that i need to publish to gitlab pages
GitLab pipeline is triggered for previous commit
Say, I have two branches: feature and develop which is my default branch. When I merge a commit to develop from feature, my CI/CD pipeline is triggered for the previous commit on develop – not the newest one that I’ve just merged from feature.
Gitlab CI using Job Artifacts API to access artifacts
I am having troubles understanding how to use Job Artifacts API to access artifacts from another pipeline. I my pipeline is designed as two stages, where first is run within the pull request pipeline, and the second is run after the merge request is approved, which creates two pipelines that do not share any predefined CI/CD variables.
How to run a one-time pipeline using gitlab REST API?
I’m researching how to run a pipeline without adding a .gitlab-ci.yml
file.