mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 04:09:40 -06:00
2.1 KiB
2.1 KiB
title, weight, geekdocRepo, geekdocEditPath, geekdocFilePath
| title | weight | geekdocRepo | geekdocEditPath | geekdocFilePath |
|---|---|---|---|---|
| Releasing | 40 | https://github.com/owncloud/ocis | edit/master/docs/extensions/ocis-phoenix | releasing.md |
{{< toc >}}
Releasing
The next generation Web Frontend is shipped as an ocis Extension. The ocis-phoenix extension is also embedded in the single binary and part of the ocis server command.
To update this package within all the deliveries, we need to update the package in the following chain from the bottom to the top.
Package Hierarchy
Prerequisites
Before updating the assets, make sure that Phoenix has been released first and take note of its release tag name.
Updating ocis-phoenix
- Create a branch
release-$version. in https://github.com/owncloud/ocis-phoenix - Create a Folder in
changelogfor the release version and datemkdir $major.$minor.$patchVersion_YYYY-MM-DD. - Move all changelog items from the
changelog/unreleased/folder to the$major.$minor.$patchVersion_YYYY-MM-DDfolder. - Update the go module
ocis-pkgto the latest version https://blog.golang.org/using-go-modules . - Update the phoenix asset by adjusting the value of
PHOENIX_ASSETS_VERSIONat the top of the Makefile and specify the tag name of the latest Phoenix release. - Run
make clean generate. - Create a changelog item for the update in the
changelog/$major.$minor.$patchVersion_YYYY-MM-DDfolder. - Commit your changes.
- After merging, wait for the CI to run on the merge commit.
- Go to "Releases" in GH click "Draft a new Release".
- Use
v$major.$minor.$patchas a tag (thevprefix is important) and publish it. - The tag and the Release artifacts will be created automatically.
Next steps
Next steps is usually updating the ocis-phoenix version in the ocis repository.