Commit 18e22094 authored by Jerome Chauveau's avatar Jerome Chauveau
Browse files

Update .gitlab-ci.yml file

parent 422f4a47
Loading
Loading
Loading
Loading
+2 −15
Original line number Diff line number Diff line
prepare_job:
  stage: prepare                                              # This stage must run before the release stage
  stage: .pre                                              # This stage must run before the release stage
  rules:
    - if: $CI_COMMIT_TAG
      when: never                                             # Do not run this job when a tag is created manually
@@ -28,16 +28,3 @@ release_job:
    description: 'Created using the release-cli $EXTRA_DESCRIPTION'  # $EXTRA_DESCRIPTION and the $TAG
    tag_name: '$TAG'                                                 # variables must be defined elsewhere
    ref: '$CI_COMMIT_SHA'                                            # in the pipeline. For example, in the
 No newline at end of file
    milestones:                                                      # prepare_job
      - 'm1'
      - 'm2'
      - 'm3'
    released_at: '2020-07-15T08:00:00Z'  # Optional, is auto generated if not defined, or can use a variable.
    assets:
      links:
        - name: 'asset1'
          url: 'https://example.com/assets/1'
        - name: 'asset2'
          url: 'https://example.com/assets/2'
          filepath: '/pretty/url/1' # optional
          link_type: 'other' # optional
 No newline at end of file