Gitlab Ci unable to push on a branch from runner
问题 I'm trying to settup a CI/CD pipelines with Gitlab Here is what I would like to do : NOTE: It's a typescript project unit tests && integration tests promote branch dev to branch integration Build docker image from branch integration deploy to integration env Here is the .gitlab-ci.yml I am using (i: stages: - test - promote - build - deploy cache: paths: - node_modules/ test: image: node stage: test before_script: - yarn script: - yarn test promote: image: node stage: promote only: - dev