kevinjqliu commented on code in PR #13989: URL: https://github.com/apache/iceberg/pull/13989#discussion_r2322663510
########## site/docs/how-to-release.md: ########## @@ -399,20 +399,24 @@ gpg --import KEYS Next, verify the `.asc` file. ```bash -gpg --verify apache-iceberg-{{ icebergVersion }}.tar.gz.asc +gpg --verify apache-iceberg-*.tar.gz.asc ``` ### Verifying Checksums ```bash -shasum -a 512 --check apache-iceberg-{{ icebergVersion }}.tar.gz.sha512 +shasum -a 512 --check apache-iceberg-*.tar.gz.sha512 ``` ### Verifying License Documentation -Untar the archive and change into the source directory. +Untar the archive. +```bash +tar xzf apache-iceberg-*.tar.gz +``` + +Navigate into the source directory. ```bash -tar xzf apache-iceberg-{{ icebergVersion }}.tar.gz Review Comment: yes! i previously thought path expansion doesnt work with `cd`. but this works `cd apache-iceberg-*/` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org