Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DUMMY gitflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Daniel Thomas
DUMMY gitflow
Commits
e5ac49c6
Commit
e5ac49c6
authored
3 months ago
by
Favio Masulli Becker
Browse files
Options
Downloads
Patches
Plain Diff
basic deploys
parent
fe89b4b6
No related branches found
No related tags found
4 merge requests
!46
Develop
,
!44
Release Cut: release-cut-1-5-2025
,
!42
basic deploys
,
!41
Deploys
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+55
-0
55 additions, 0 deletions
.gitlab-ci.yml
with
55 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
55
−
0
View file @
e5ac49c6
# This file is a template, and might need editing before it works on your project.
# You can copy and paste this template into a new `.gitlab-ci.yml` file.
# You should not add this template to an existing `.gitlab-ci.yml` file by using the `include:` keyword.
#
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Bash.gitlab-ci.yml
# See https://docs.gitlab.com/ee/ci/yaml/index.html for all available options
# you can delete this line if you're not using Docker
# Variables
variables
:
CI_DEBUG_TRACE
:
"
false"
# Stages
stages
:
-
deploy
# Dev Pipeline
deploy_develop
:
stage
:
deploy
script
:
-
echo "Deploying to Dev environment..."
-
sleep
30
environment
:
name
:
D
only
:
-
develop
# Uat Pipeline
deploy_uat
:
stage
:
deploy
script
:
-
echo "Deploying to Uat environment..."
-
sleep
30
environment
:
name
:
Uat
only
:
-
main
# PROD Pipeline
deploy_prod
:
stage
:
deploy
script
:
-
echo "Deploying last Uat commit..."
-
echo "Deploying to Prod..."
-
sleep
30
environment
:
name
:
Prod
when
:
manual
only
:
-
main
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment