Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
webservice
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DevOps (Lecture FB VI)
webservice
Merge requests
!28
Merging final pip in main
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Merging final pip in main
s91190/app-service:stable
into
main
Overview
0
Commits
40
Pipelines
2
Changes
1
Closed
Isabelle Josephine Karal
requested to merge
s91190/app-service:stable
into
main
4 months ago
Overview
0
Commits
40
Pipelines
2
Changes
1
Expand
Merge request reports
Viewing commit
4bfd21a9
Prev
Next
Show latest version
1 file
+
18
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
4bfd21a9
builed and release please
· 4bfd21a9
Isabelle Josephine Karal
authored
4 months ago
.gitlab-ci.yml
+
18
−
3
Options
@@ -31,7 +31,6 @@ job_build:
paths
:
-
./artifacts
job_test
:
stage
:
test
rules
:
@@ -46,9 +45,25 @@ job_test:
job_release
:
stage
:
release
image
:
registry.gitlab.com/gitlab-org/release-cli:latest
#https://docs.gitlab.com/ee/user/project/releases/release_cicd_examples.html
rules
:
-
if
:
$CI_COMMIT_BRANCH == "stable" || $CI_COMMIT_REF_NAME =~ /stable/
#https://docs.gitlab.com/ee/ci/variables/predefined_variables.html, https://docs.gitlab.com/ee/ci/yaml/#workflow
when
:
always
script
:
-
echo release
dependencies
:
#https://docs.gitlab.com/ee/ci/yaml/#dependencies
-
job_build
before_script
:
-
apt update
-
apt install -y ca-certificates curl
-
update ca-certificates
-
export version="${CI_COMMIT_REF_NAME}"
script
:
#https://docs.gitlab.com/ee/ci/variables/predefined_variables.html
-
|
for artifact in ./artifacts/*; do
chmod +x ${artifact}
curl \
--header "JOB-TOKEN: ${CI_JOB_TOKEN}" \
--upload-file ${artifact} \
"${CI_API_V4_URL/projects/$CI_PROJECT_ID}/packages/generic/artifacts/${version}/"
done
Loading