Skip to content
Snippets Groups Projects

Merging final pip in main

Closed Isabelle Josephine Karal requested to merge s91190/app-service:stable into main
1 file
+ 18
3
Compare changes
  • Side-by-side
  • Inline
+ 18
3
@@ -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