This is an automated email from the ASF dual-hosted git repository. bugraoz pushed a commit to branch add-os-difference-to-airflowctl-docs in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 01edf7597ab250394c53c06df3721971f9da43db Author: bugraoz93 <[email protected]> AuthorDate: Sat Jan 10 13:20:11 2026 +0100 Add Linux favour of installing dependencies for release --- dev/README_RELEASE_AIRFLOWCTL.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dev/README_RELEASE_AIRFLOWCTL.md b/dev/README_RELEASE_AIRFLOWCTL.md index 62b710198ad..6d1c942f316 100644 --- a/dev/README_RELEASE_AIRFLOWCTL.md +++ b/dev/README_RELEASE_AIRFLOWCTL.md @@ -128,11 +128,20 @@ the "dev/sign.sh" script (assuming you have the right PGP key set-up for signing generates corresponding .asc and .sha512 files for each file to sign. note: sign script uses `libassuan` and `gnupg` if you don't have them installed run: +MacOS: + ```shell script brew install libassuan brew install gnupg ``` +Linux (Debian/Ubuntu): + +```shell script +sudo apt-get install libassuan-dev +sudo apt-get install gnupg +``` + ## Build and sign the source and convenience packages * Cleanup dist folder:
