Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
python_one_week_4_biologists_solutions
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
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
hub-courses
python_one_week_4_biologists_solutions
Commits
1f1cbc48
Commit
1f1cbc48
authored
7 years ago
by
Bertrand NÉRON
Browse files
Options
Downloads
Patches
Plain Diff
split pipeline in 2 step build & deploy
parent
7eadf7ca
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+14
-4
14 additions, 4 deletions
.gitlab-ci.yml
with
14 additions
and
4 deletions
.gitlab-ci.yml
+
14
−
4
View file @
1f1cbc48
image
:
registry-gitlab.pasteur.fr/hub-courses/sphinx-env/sphinx:1.4.1
sphinx
:
stage
:
build
script
:
-
make html
-
mv build/html/ .
artifacts
:
paths
:
-
html/
pages
:
stage
:
deploy
image
:
registry-gitlab.pasteur.fr/hub/courses/sphinx-env/sphinx:1.4.1
dependencies
:
-
sphinx
script
:
-
make html
-
mv build/html/ public/
-
mv html/ public/
artifacts
:
paths
:
-
public
only
:
-
master
\ No newline at end of file
-
master
This diff is collapsed.
Click to expand it.
Preview
0%
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