Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
steering
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
steering
Merge requests
!26
FEAT(gitlab-ci):Push from Feature Branch
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
FEAT(gitlab-ci):Push from Feature Branch
feat-auto-deployment
into
main
Overview
0
Commits
2
Pipelines
4
Changes
1
Merged
Kay Effenberger
requested to merge
feat-auto-deployment
into
main
1 year ago
Overview
0
Commits
2
Pipelines
4
Changes
1
Expand
If a Merge Request on a feature Branch is created, the Image will pushed to gitlab registry
0
0
Merge request reports
Compare
version 1
version 1
2c7f84c6
1 year ago
main (base)
and
latest version
latest version
29259835
2 commits,
1 year ago
version 1
2c7f84c6
1 commit,
1 year ago
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
2
−
2
Options
@@ -83,12 +83,12 @@ docker-push:
-
|
if [ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]
then docker build -t $AURA_IMAGE_NAME:unstable .
docker push
"
$AURA_IMAGE_NAME
" --all-tag
docker push $AURA_IMAGE_NAME
:unstable
elif expr "$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME" : ^feat > /dev/null
then docker build -t $AURA_IMAGE_NAME -t $CI_REGISTRY_IMAGE:$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME .
docker push $CI_REGISTRY_IMAGE:$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME
else docker build -t $AURA_IMAGE_NAME -t $AURA_IMAGE_NAME:$CI_COMMIT_TAG .
docker push
"
$AURA_IMAGE_NAME
" --all-tag
docker push $AURA_IMAGE_NAME
:$CI_COMMIT_TAG
fi
rules
:
-
*release-rules
Loading