Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lexp_www
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lexworkers
lexp_www
Merge requests
!2
Develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Develop
develop
into
master
Overview
0
Commits
6
Pipelines
2
Changes
4
Merged
Bartosz Walkowiak
requested to merge
develop
into
master
1 year ago
Overview
0
Commits
6
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Viewing commit
893c4d9a
Prev
Next
Show latest version
2 files
+
6
−
4
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
893c4d9a
Change backend address
· 893c4d9a
bwalkow
authored
1 year ago
.gitlab-ci.yml
+
4
−
2
Options
@@ -9,7 +9,9 @@ build_image:
services
:
-
docker:18.09.7-dind
script
:
-
docker build -t $CI_REGISTRY_IMAGE .
-
if [ "$CI_COMMIT_REF_NAME" == "master" ]; then TAG="latest"; else TAG="develop"; fi
-
docker build -t $CI_REGISTRY_IMAGE:$TAG .
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-
docker push $CI_REGISTRY_IMAGE
-
docker push $CI_REGISTRY_IMAGE:$TAG