Skip to content

Commit

Permalink
docs(release): how to clean up old releases (#3934)
Browse files Browse the repository at this point in the history
* docs(release): how to clean up old releases

Signed-off-by: tison <[email protected]>

* polish

Signed-off-by: tison <[email protected]>

---------

Signed-off-by: tison <[email protected]>
  • Loading branch information
tisonkun authored Jan 7, 2024
1 parent 3edaa8f commit e912a69
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions website/community/committers/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -596,3 +596,20 @@ fully endorsed by the ASF.
```

Example: <https://lists.apache.org/thread/oy77n55brvk72tnlb2bjzfs9nz3cfd0s>

## Post release

After the official release out, you may perform a few post actions.

### Remove the old releases

Remove the old releases if any. You only need the latest release there, and older releases are available through the Apache archive.

To clean up old releases, run:

```shell
# 1. Get the list of releases
svn ls https://dist.apache.org/repos/dist/release/incubator/opendal
# 2. Delete each release (except for the last one)
svn del -m "Archiving OpenDAL release X.Y.Z" https://dist.apache.org/repos/dist/release/incubator/opendal/X.Y.Z
```

0 comments on commit e912a69

Please sign in to comment.