HonahX commented on code in PR #983:
URL: https://github.com/apache/iceberg-python/pull/983#discussion_r1698042743
##########
mkdocs/docs/how-to-release.md:
##########
@@ -208,6 +208,15 @@ svn add /tmp/iceberg-dist-release/
svn ci -m "PyIceberg <VERSION>" /tmp/iceberg-dist-release/
Review Comment:
I just realized that today I used a slightly different way to copy artifacts
to the release dist.
```bash
export RC=rc2
export VERSION=0.7.0${RC}
export VERSION_WITHOUT_RC=${VERSION/rc?/}
export
SVN_DEV_DIR_VERSIONED="https://dist.apache.org/repos/dist/dev/iceberg/pyiceberg-${VERSION}"
export
SVN_RELEASE_DIR_VERSIONED="https://dist.apache.org/repos/dist/release/iceberg/pyiceberg-${VERSION_WITHOUT_RC}"
svn mv ${SVN_DEV_DIR_VERSIONED} ${SVN_RELEASE_DIR_VERSIONED} -m "PyIceberg:
Add release ${VERSION_WITHOUT_RC}"
```
The above commands are derived from
https://github.com/apache/iceberg/pull/9926.
If you are going to make any changes to this PR, would you mind also
updating the copying to artifacts examples? Thanks in advance! Otherwise, I can
update this in a separate PR. : )
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]