| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| # Shared configuration for the Apache Doris Operator release helpers. |
| # Edit this file once for each release. All four numbered scripts source it. |
| |
| ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
| REPO_DIR="${ROOT}/../.." |
| |
| VERSION="26.0.0" |
| TAG="${VERSION}" |
| GIT_REMOTE="upstream-apache" |
| |
| PKG_BASE="apache-doris-operator-${VERSION}-src" |
| ARCHIVE_PREFIX="${PKG_BASE}/" |
| |
| DEV_SVN_BASE="https://dist.apache.org/repos/dist/dev/doris/doris-operator" |
| DEV_SVN_DIR="${DEV_SVN_BASE}/${VERSION}" |
| RELEASE_SVN_BASE="https://dist.apache.org/repos/dist/release/doris/doris-operator" |
| RELEASE_SVN_DIR="${RELEASE_SVN_BASE}/${VERSION}" |
| |
| KEYS_URL="https://downloads.apache.org/doris/KEYS" |
| DEV_KEYS_SVN_BASE="https://dist.apache.org/repos/dist/dev/doris" |
| RELEASE_KEYS_SVN_BASE="https://dist.apache.org/repos/dist/release/doris" |
| |
| APACHE_ID="morningman" |
| APACHE_EMAIL="morningman@apache.org" |
| SIGNER_NAME="Mingyu Chen" |
| # Required: full fingerprint of the secret key used to sign release artifacts. |
| SIGNING_KEY="" |
| |
| GITHUB_TAG_URL="https://github.com/apache/doris-operator/releases/tag/${TAG}" |
| RELEASE_NOTES_URL="https://github.com/apache/doris-operator/issues/506" |
| VERIFY_GUIDE_URL="https://doris.apache.org/community/release-and-verify/release-verify" |
| DOWNLOAD_PAGE_URL="${GITHUB_TAG_URL}" |
| |
| VOTE_TO="dev@doris.apache.org" |
| ANNOUNCE_TO="announce@apache.org" |
| |
| WORK_DIR="${ROOT}/${VERSION}" |
| |
| # SVN credentials are read only from the process environment: |
| # export ASF_USERNAME="<apache-id>" |
| # export ASF_PASSWORD="<apache-ldap-password>" |