gitlab.com/jfprevost/gitlab-runner-notlscheck@v11.11.4+incompatible/ci/release_packagecloud (about)

     1  #!/usr/bin/env bash
     2  
     3  set -eo pipefail
     4  
     5  target=$(echo ${1} | cut -f 1 -d ' ')
     6  case "${target}" in
     7      bleeding)
     8          make packagecloud PACKAGE_CLOUD="runner/unstable" \
     9                            DEB_PLATFORMS="debian/jessie debian/stretch ubuntu/trusty ubuntu/xenial ubuntu/bionic" \
    10                            RPM_PLATFORMS="el/7 fedora/29"
    11          ;;
    12      stable)
    13          make packagecloud
    14          ;;
    15      *)
    16          echo "Unkown packagecloud upload target: '${target}'"
    17          exit 1
    18          ;;
    19  esac