You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2024/02/13 00:57:37 UTC

(airflow) 24/44: Sign helm chart packages without dist/ prefix (#37260)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v2-8-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit ec230e80d720db0e9dc009736da01d41f60f029c
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Thu Feb 8 21:08:08 2024 +0100

    Sign helm chart packages without dist/ prefix (#37260)
    
    The chart packages are placed in dist folder and in order to get
    rid of the dist/ prefix, we should sign them while being in the
    dist directory.
    
    This PR updates the release process to reflect it.
    
    (cherry picked from commit 91fab4aefc104cac6a1b5e78d983239c34dcee3e)
---
 dev/README_RELEASE_HELM_CHART.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev/README_RELEASE_HELM_CHART.md b/dev/README_RELEASE_HELM_CHART.md
index 804c530f73..77faa3fea3 100644
--- a/dev/README_RELEASE_HELM_CHART.md
+++ b/dev/README_RELEASE_HELM_CHART.md
@@ -208,7 +208,9 @@ https://helm.sh/docs/topics/provenance/. It can be used to verify integrity of t
 - Generate SHA512/ASC
 
 ```shell
-${AIRFLOW_REPO_ROOT}/dev/sign.sh dist/airflow-*.tgz dist/airflow-*-source.tar.gz
+pushd ${AIRFLOW_REPO_ROOT}/dist
+${AIRFLOW_REPO_ROOT}/dev/sign.sh airflow-*.tgz airflow-*-source.tar.gz
+popd
 ```
 
 - Move the artifacts to ASF dev dist repo, Generate convenience `index.yaml` & Publish them