Skip to content

Commit

Permalink
Fix instructions of release to get proper path in shasum file (apache…
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk authored Aug 19, 2021
1 parent b5e6661 commit 02fbe44
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dev/README_RELEASE_AIRFLOW.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,18 @@ The Release Candidate artifacts we vote upon should be the exact ones we vote ag

```shell script
./breeze prepare-airflow-packages --package-format both
${AIRFLOW_REPO_ROOT}/dev/sign.sh dist/*
pushd dist
${AIRFLOW_REPO_ROOT}/dev/sign.sh *
popd
```

- If you aren't using Breeze for packaging, build the distribution and wheel files directly
```shell script
python setup.py compile_assets sdist bdist_wheel
${AIRFLOW_REPO_ROOT}/dev/sign.sh dist/*
pushd dist
${AIRFLOW_REPO_ROOT}/dev/sign.sh *
popd
```
- Tag & Push the latest constraints files. This pushes constraints with rc suffix (this is expected)!
Expand Down

0 comments on commit 02fbe44

Please sign in to comment.